Index: chrome/common/net/gaia/oauth2_mint_token_flow.cc |
diff --git a/chrome/common/net/gaia/oauth2_mint_token_flow.cc b/chrome/common/net/gaia/oauth2_mint_token_flow.cc |
index 511b8b4c3f44f8da30e91b3ad73f641e983f85fd..285cd2b454550956a2f8f5c618b181abe1063c69 100644 |
--- a/chrome/common/net/gaia/oauth2_mint_token_flow.cc |
+++ b/chrome/common/net/gaia/oauth2_mint_token_flow.cc |
@@ -227,11 +227,11 @@ bool OAuth2MintTokenFlow::ParseIssueAdviceResponse( |
CHECK(dict); |
CHECK(issue_advice); |
- base::DictionaryValue* consent_dict = NULL; |
+ const base::DictionaryValue* consent_dict = NULL; |
if (!dict->GetDictionary(kConsentKey, &consent_dict)) |
return false; |
- base::ListValue* scopes_list = NULL; |
+ const base::ListValue* scopes_list = NULL; |
if (!consent_dict->GetList(kScopesKey, &scopes_list)) |
return false; |