| 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 0940d3c8ea0fecb16cbe6e85b195622f580ef2eb..58561d2118ecf632878734d74adf6e98b85f4bf1 100644
|
| --- a/google_apis/gaia/gaia_auth_fetcher.cc
|
| +++ b/google_apis/gaia/gaia_auth_fetcher.cc
|
| @@ -53,7 +53,7 @@ bool ExtractOAuth2TokenPairResponse(const std::string& data,
|
| DCHECK(expires_in_secs);
|
|
|
| std::unique_ptr<base::Value> value = base::JSONReader::Read(data);
|
| - if (!value.get() || value->GetType() != base::Value::TYPE_DICTIONARY)
|
| + if (!value.get() || value->GetType() != base::Value::Type::DICTIONARY)
|
| return false;
|
|
|
| base::DictionaryValue* dict =
|
| @@ -481,7 +481,7 @@ bool GaiaAuthFetcher::ParseListIdpSessionsResponse(const std::string& data,
|
| DCHECK(login_hint);
|
|
|
| std::unique_ptr<base::Value> value = base::JSONReader::Read(data);
|
| - if (!value.get() || value->GetType() != base::Value::TYPE_DICTIONARY)
|
| + if (!value.get() || value->GetType() != base::Value::Type::DICTIONARY)
|
| return false;
|
|
|
| base::DictionaryValue* dict =
|
|
|