MCPcopy Create free account
hub / github.com/breach/thrust / CookiesLoadForKey

Method CookiesLoadForKey

src/api/thrust_session_binding.cc:226–239  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

224}
225
226void
227ThrustSessionBinding::CookiesLoadForKey(
228 const std::string& key,
229 const LoadedCallback& loaded_callback)
230{
231 /* Runs on UI thread. */
232 base::DictionaryValue* args = new base::DictionaryValue;
233 args->SetString("key", key);
234
235 this->InvokeRemoteMethod("cookies_load_for_key",
236 scoped_ptr<base::DictionaryValue>(args).Pass(),
237 base::Bind(&ThrustSessionBinding::CookiesLoadCallback,
238 this, loaded_callback));
239}
240
241void
242ThrustSessionBinding::CookiesFlushCallback(

Callers

nothing calls this directly

Calls 1

InvokeRemoteMethodMethod · 0.80

Tested by

no test coverage detected