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

Unified Diff: chrome/common/net/gaia/oauth2_mint_token_flow.cc

Issue 10837044: Correct const accessors in base/values.(h|cc), Part II (ListValue) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: David's comments Created 8 years, 4 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 | « chrome/common/extensions/extension.cc ('k') | chrome/installer/util/master_preferences.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 285cd2b454550956a2f8f5c618b181abe1063c69..afee27724d3f9d1a09b19e6eadb937eeea6d9629 100644
--- a/chrome/common/net/gaia/oauth2_mint_token_flow.cc
+++ b/chrome/common/net/gaia/oauth2_mint_token_flow.cc
@@ -237,7 +237,7 @@ bool OAuth2MintTokenFlow::ParseIssueAdviceResponse(
bool success = true;
for (size_t index = 0; index < scopes_list->GetSize(); ++index) {
- base::DictionaryValue* scopes_entry = NULL;
+ const base::DictionaryValue* scopes_entry = NULL;
IssueAdviceInfoEntry entry;
string16 detail;
if (!scopes_list->GetDictionary(index, &scopes_entry) ||
« no previous file with comments | « chrome/common/extensions/extension.cc ('k') | chrome/installer/util/master_preferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698