Index: google_apis/gaia/gaia_auth_fetcher.cc |
diff --git a/google_apis/gaia/gaia_auth_fetcher.cc b/google_apis/gaia/gaia_auth_fetcher.cc |
index d614cd4c27c40a3e6c94db353cb2276f7b535e18..ca6054a33076852a7069e7ec4de4df8cb3d404ac 100644 |
--- a/google_apis/gaia/gaia_auth_fetcher.cc |
+++ b/google_apis/gaia/gaia_auth_fetcher.cc |
@@ -52,7 +52,7 @@ bool ExtractOAuth2TokenPairResponse(const std::string& data, |
DCHECK(access_token); |
DCHECK(expires_in_secs); |
- scoped_ptr<base::Value> value = base::JSONReader::Read(data); |
+ std::unique_ptr<base::Value> value = base::JSONReader::Read(data); |
if (!value.get() || value->GetType() != base::Value::TYPE_DICTIONARY) |
return false; |
@@ -467,7 +467,7 @@ bool GaiaAuthFetcher::ParseListIdpSessionsResponse(const std::string& data, |
std::string* login_hint) { |
DCHECK(login_hint); |
- scoped_ptr<base::Value> value = base::JSONReader::Read(data); |
+ std::unique_ptr<base::Value> value = base::JSONReader::Read(data); |
if (!value.get() || value->GetType() != base::Value::TYPE_DICTIONARY) |
return false; |