Searched defs:response_dict (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/chrome/browser/extensions/api/gcd_private/
H A Dgcd_private_apitest.cc93 base::DictionaryValue* response_dict; variable
94 ASSERT_TRUE(response->GetAsDictionary(&response_dict));
96 request->OnGCDAPIFlowComplete(*response_dict);
/external/chromium_org/remoting/host/
H A Dtoken_validator_factory_impl_unittest.cc106 base::DictionaryValue response_dict; local
107 response_dict.SetString("access_token", kSharedSecret);
108 response_dict.SetString("token_type", "shared_secret");
109 response_dict.SetString("scope", scope);
111 base::JSONWriter::Write(&response_dict, &response);
116 base::DictionaryValue response_dict; local
117 response_dict.SetString("error", error);
119 base::JSONWriter::Write(&response_dict, &response);
/external/chromium_org/chrome/service/cloud_print/
H A Dcloud_print_url_fetcher.cc203 scoped_ptr<base::DictionaryValue> response_dict = local
206 if (response_dict) {
209 response_dict.get(),
/external/chromium_org/google_apis/gaia/
H A Dgaia_oauth_client.cc254 scoped_ptr<base::DictionaryValue> response_dict; local
261 response_dict.reset(
266 if (!response_dict.get()) {
286 response_dict->GetString("email", &email);
293 response_dict->GetString("id", &id);
299 delegate_->OnGetTokenInfoResponse(response_dict.Pass());
308 response_dict->GetString(kAccessTokenValue, &access_token);
309 response_dict->GetString(kRefreshTokenValue, &refresh_token);
310 response_dict->GetInteger(kExpiresInValue, &expires_in_seconds);
H A Dfake_gaia.cc300 void FakeGaia::FormatJSONResponse(const base::DictionaryValue& response_dict, argument
303 base::JSONWriter::Write(&response_dict, &response_json);
444 base::DictionaryValue response_dict; local
445 response_dict.SetString("refresh_token",
447 response_dict.SetString("access_token",
449 response_dict.SetInteger("expires_in", 3600);
450 FormatJSONResponse(response_dict, http_response);
460 base::DictionaryValue response_dict; local
461 response_dict.SetString("access_token", token_info->token);
462 response_dict
490 base::DictionaryValue response_dict; local
515 base::DictionaryValue response_dict; local
[all...]
/external/chromium_org/content/browser/devtools/
H A Ddevtools_protocol.cc263 base::DictionaryValue* response_dict) {
265 if (!response_dict->GetInteger(kIdParam, &id))
269 if (response_dict->GetDictionary(kErrorParam, &error_dict)) {
271 response_dict->GetInteger(kErrorCodeParam, &error_code);
273 response_dict->GetString(kErrorMessageParam, &error_message);
278 response_dict->GetDictionary(kResultParam, &result);
262 ParseResponse( base::DictionaryValue* response_dict) argument
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_client.cc557 scoped_ptr<base::DictionaryValue> response_dict; local
576 response_dict.reset(
583 if (!response_dict->GetString(kErrorTypeKey, &error_type_string)) {
594 if (response_dict->GetString(kMessageTypeForBuyerKey,
617 if (type != ACCEPT_LEGAL_DOCUMENTS && !response_dict) {
629 if (response_dict->GetString(kAuthResultKey, &auth_result)) {
642 FullWallet::CreateFullWallet(*response_dict));
655 WalletItems::CreateWalletItems(*response_dict));
667 response_dict->GetString(kInstrumentIdKey, &instrument_id);
669 response_dict
[all...]

Completed in 500 milliseconds