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

Unified Diff: chrome/test/chromedriver/logging.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/test/chromedriver/logging.cc
diff --git a/chrome/test/chromedriver/logging.cc b/chrome/test/chromedriver/logging.cc
index f99a04928d948516371c82b6232466bc9562d895..71dfbd5659d655ec2381195700ca2ae49b6de5b6 100644
--- a/chrome/test/chromedriver/logging.cc
+++ b/chrome/test/chromedriver/logging.cc
@@ -171,8 +171,8 @@
for (base::ListValue::const_iterator it = list->begin();
it != list->end();
++it) {
- const base::DictionaryValue* log_entry = NULL;
- it->GetAsDictionary(&log_entry);
+ base::DictionaryValue* log_entry = NULL;
+ (*it)->GetAsDictionary(&log_entry);
if (log_entry != NULL) {
std::string level;
if (log_entry->GetString("level", &level))
« no previous file with comments | « chrome/test/chromedriver/chrome/network_conditions.cc ('k') | chrome/test/chromedriver/performance_logger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698