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

Unified Diff: chromeos/system/statistics_provider.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: chromeos/system/statistics_provider.cc
diff --git a/chromeos/system/statistics_provider.cc b/chromeos/system/statistics_provider.cc
index 26fb751b78f404002cd4db7393515a4b70dda4a5..de21ae6e5ecae4737e07a6d914e5015921012e27 100644
--- a/chromeos/system/statistics_provider.cc
+++ b/chromeos/system/statistics_provider.cc
@@ -115,7 +115,7 @@ bool JoinListValuesToString(const base::DictionaryValue* dictionary,
bool first = true;
for (const auto& v : *list) {
std::string value;
- if (!v->GetAsString(&value))
+ if (!v.GetAsString(&value))
return false;
if (first)

Powered by Google App Engine
This is Rietveld 408576698