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

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: Created 8 years, 5 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
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) ||

Powered by Google App Engine
This is Rietveld 408576698