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

Unified Diff: chrome/browser/chromeos/settings/cros_settings.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: chrome/browser/chromeos/settings/cros_settings.cc
diff --git a/chrome/browser/chromeos/settings/cros_settings.cc b/chrome/browser/chromeos/settings/cros_settings.cc
index 91042aac401f18122c6cb7b0d17d67af08629b12..b49a02e4588d74d85b99bfde66ad3b8d6fe3dc79 100644
--- a/chrome/browser/chromeos/settings/cros_settings.cc
+++ b/chrome/browser/chromeos/settings/cros_settings.cc
@@ -245,7 +245,7 @@ bool CrosSettings::FindEmailInList(const std::string& path,
entry != list->end();
++entry) {
std::string entry_string;
- if (!(*entry)->GetAsString(&entry_string)) {
+ if (!entry->GetAsString(&entry_string)) {
NOTREACHED();
continue;
}

Powered by Google App Engine
This is Rietveld 408576698