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

Unified Diff: chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc

Issue 2816513002: Revert of Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Created 3 years, 8 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/feedback/system_logs/log_sources/chrome_internal_log_source.cc
diff --git a/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc b/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
index 886b108b294a3112c395006c293d63e1ca635f2f..68e086d40919d1fad966f59750d2156233ab4dd3 100644
--- a/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
+++ b/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
@@ -173,7 +173,7 @@
for (base::ListValue::iterator it = details->begin();
it != details->end(); ++it) {
base::DictionaryValue* dict = NULL;
- if (it->GetAsDictionary(&dict)) {
+ if ((*it)->GetAsDictionary(&dict)) {
std::string title;
dict->GetString("title", &title);
if (title == syncer::sync_ui_util::kIdentityTitle) {

Powered by Google App Engine
This is Rietveld 408576698