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

Unified Diff: google_apis/gaia/gaia_auth_fetcher.cc

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Comment Updates Created 3 years, 9 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: 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 03bd8a4526d4b3ac930b2a06f26528ce67402351..c5c3f1c71d0a8d1eb7841503d12646490e4ed4ab 100644
--- a/google_apis/gaia/gaia_auth_fetcher.cc
+++ b/google_apis/gaia/gaia_auth_fetcher.cc
@@ -499,7 +499,7 @@ bool GaiaAuthFetcher::ParseListIdpSessionsResponse(const std::string& data,
iter != sessionsList->end();
iter++) {
base::DictionaryValue* sessionDictionary;
- if (!(*iter)->GetAsDictionary(&sessionDictionary))
+ if (!iter->GetAsDictionary(&sessionDictionary))
continue;
if (sessionDictionary->GetString("login_hint", login_hint))

Powered by Google App Engine
This is Rietveld 408576698