| 224 | } |
| 225 | |
| 226 | void |
| 227 | ThrustSessionBinding::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 | |
| 241 | void |
| 242 | ThrustSessionBinding::CookiesFlushCallback( |
nothing calls this directly
no test coverage detected