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

/external/chromium_org/google_apis/gaia/
H A Dfake_gaia.cc77 base::DictionaryValue response_dict; local
78 response_dict.SetString("access_token", token_info->token);
79 response_dict.SetInteger("expires_in", 3600);
80 FormatJSONResponse(response_dict, http_response.get());
100 base::DictionaryValue response_dict; local
101 response_dict.SetString("issued_to", token_info->issued_to);
102 response_dict.SetString("audience", token_info->audience);
103 response_dict.SetString("user_id", token_info->user_id);
106 response_dict.SetString("scope", JoinString(scope_vector, " "));
107 response_dict
128 base::DictionaryValue response_dict; local
150 FormatJSONResponse(const base::DictionaryValue& response_dict, BasicHttpResponse* http_response) argument
[all...]
H A Dgaia_oauth_client.cc251 scoped_ptr<base::DictionaryValue> response_dict; local
258 response_dict.reset(
263 if (!response_dict.get()) {
283 response_dict->GetString("email", &email);
290 response_dict->GetString("id", &id);
296 delegate_->OnGetTokenInfoResponse(response_dict.Pass());
305 response_dict->GetString(kAccessTokenValue, &access_token);
306 response_dict->GetString(kRefreshTokenValue, &refresh_token);
307 response_dict->GetInteger(kExpiresInValue, &expires_in_seconds);
/external/chromium_org/remoting/host/
H A Dtoken_validator_factory_impl_unittest.cc69 DictionaryValue response_dict; local
70 response_dict.SetString("access_token", kSharedSecret);
71 response_dict.SetString("token_type", "shared_secret");
72 response_dict.SetString("scope", scope);
74 base::JSONWriter::Write(&response_dict, &response);
79 DictionaryValue response_dict; local
80 response_dict.SetString("error", error);
82 base::JSONWriter::Write(&response_dict, &response);
/external/chromium_org/chrome/service/cloud_print/
H A Dcloud_print_url_fetcher.cc203 scoped_ptr<DictionaryValue> response_dict = local
206 if (response_dict) {
209 response_dict.get(),
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_client.cc578 scoped_ptr<base::DictionaryValue> response_dict; local
597 response_dict.reset(
604 if (!response_dict->GetString(kErrorTypeKey, &error_type_string)) {
615 if (response_dict->GetString(kMessageTypeForBuyerKey,
638 if (type != ACCEPT_LEGAL_DOCUMENTS && !response_dict) {
650 if (response_dict->GetString(kAuthResultKey, &auth_result)) {
665 FullWallet::CreateFullWallet(*response_dict));
678 WalletItems::CreateWalletItems(*response_dict));
690 response_dict->GetString(kInstrumentIdKey, &instrument_id);
692 response_dict
[all...]

Completed in 170 milliseconds