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

Unified Diff: content/browser/tracing/background_tracing_config_impl.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: content/browser/tracing/background_tracing_config_impl.cc
diff --git a/content/browser/tracing/background_tracing_config_impl.cc b/content/browser/tracing/background_tracing_config_impl.cc
index b5d5c9afaa0e6e79f0d8168481981edc0bd8545f..3ce2fabf09258acd2e29de7783fadd6556c775a4 100644
--- a/content/browser/tracing/background_tracing_config_impl.cc
+++ b/content/browser/tracing/background_tracing_config_impl.cc
@@ -233,7 +233,7 @@
for (const auto& it : *configs_list) {
const base::DictionaryValue* config_dict = nullptr;
- if (!it.GetAsDictionary(&config_dict))
+ if (!it->GetAsDictionary(&config_dict))
return nullptr;
config->AddPreemptiveRule(config_dict);
@@ -259,7 +259,7 @@
for (const auto& it : *configs_list) {
const base::DictionaryValue* config_dict = nullptr;
- if (!it.GetAsDictionary(&config_dict))
+ if (!it->GetAsDictionary(&config_dict))
return nullptr;
std::string category_preset_string;
« no previous file with comments | « content/browser/devtools/protocol/tracing_handler.cc ('k') | content/browser/webrtc/webrtc_getusermedia_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698