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

Unified Diff: chrome/browser/chrome_browser_main.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/chrome_browser_main.cc
diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
index 8878bb270898338789a2d1de3c0f0acd08a4f04c..9271d09b07694c2915b75233ca2a58b911219ee3 100644
--- a/chrome/browser/chrome_browser_main.cc
+++ b/chrome/browser/chrome_browser_main.cc
@@ -856,7 +856,7 @@ void ChromeBrowserMainParts::SetupOriginTrialsCommandLine() {
std::vector<std::string> disabled_features;
std::string disabled_feature;
for (const auto& item : *override_disabled_feature_list) {
- if (item->GetAsString(&disabled_feature)) {
+ if (item.GetAsString(&disabled_feature)) {
disabled_features.push_back(disabled_feature);
}
}

Powered by Google App Engine
This is Rietveld 408576698