summaryrefslogtreecommitdiffstats
path: root/chrome/common/net/gaia/oauth2_mint_token_flow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/net/gaia/oauth2_mint_token_flow.cc')
-rw-r--r--chrome/common/net/gaia/oauth2_mint_token_flow.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/net/gaia/oauth2_mint_token_flow.cc b/chrome/common/net/gaia/oauth2_mint_token_flow.cc
index 511b8b4..285cd2b 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;