Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(535)

Unified Diff: google_apis/gaia/gaia_oauth_client.cc

Issue 17034006: Add base namespace to more values in sync and elsewhere. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « google_apis/gaia/gaia_auth_fetcher.cc ('k') | google_apis/gaia/google_service_auth_error.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gaia/gaia_oauth_client.cc
diff --git a/google_apis/gaia/gaia_oauth_client.cc b/google_apis/gaia/gaia_oauth_client.cc
index 7b543db881e19979e6a74758c545ab7e3e33addd..f748fdb78ffbfd3e332de5a66a8eaf8623ffe8db 100644
--- a/google_apis/gaia/gaia_oauth_client.cc
+++ b/google_apis/gaia/gaia_oauth_client.cc
@@ -186,15 +186,15 @@ void GaiaOAuthClient::Core::HandleResponse(
return;
}
- scoped_ptr<DictionaryValue> response_dict;
+ scoped_ptr<base::DictionaryValue> response_dict;
if (source->GetResponseCode() == net::HTTP_OK) {
std::string data;
source->GetResponseAsString(&data);
- scoped_ptr<Value> message_value(base::JSONReader::Read(data));
+ scoped_ptr<base::Value> message_value(base::JSONReader::Read(data));
if (message_value.get() &&
- message_value->IsType(Value::TYPE_DICTIONARY)) {
+ message_value->IsType(base::Value::TYPE_DICTIONARY)) {
response_dict.reset(
- static_cast<DictionaryValue*>(message_value.release()));
+ static_cast<base::DictionaryValue*>(message_value.release()));
}
}
« no previous file with comments | « google_apis/gaia/gaia_auth_fetcher.cc ('k') | google_apis/gaia/google_service_auth_error.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698