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

Unified Diff: chrome/browser/chrome_browser_main.cc

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Rebase 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
« no previous file with comments | « chrome/browser/android/vr_shell/ui_scene.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_browser_main.cc
diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
index df7b1cc1046295ee403ac8f528595ea702878327..612d16bd9b979e17f1d464c2d04a4f4b911389bd 100644
--- a/chrome/browser/chrome_browser_main.cc
+++ b/chrome/browser/chrome_browser_main.cc
@@ -855,7 +855,7 @@ void ChromeBrowserMainParts::SetupOriginTrialsCommandLine() {
std::vector<base::StringPiece> disabled_features;
base::StringPiece 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);
}
}
@@ -874,7 +874,7 @@ void ChromeBrowserMainParts::SetupOriginTrialsCommandLine() {
std::vector<base::StringPiece> disabled_tokens;
base::StringPiece disabled_token;
for (const auto& item : *disabled_token_list) {
- if (item->GetAsString(&disabled_token)) {
+ if (item.GetAsString(&disabled_token)) {
disabled_tokens.push_back(disabled_token);
}
}
« no previous file with comments | « chrome/browser/android/vr_shell/ui_scene.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698