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

Unified Diff: chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.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/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 80acaac6e8ac13fd284f1971055ca99dac74122a..92646ecce53f235d0dfcd1a0b0bc1a762c46c1a6 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
@@ -168,7 +168,7 @@ void ChromeInternalLogSource::PopulateSyncLogs(SystemLogsResponse* response) {
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