diff options
Diffstat (limited to 'chromium/content/browser/startup_helper.cc')
-rw-r--r-- | chromium/content/browser/startup_helper.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chromium/content/browser/startup_helper.cc b/chromium/content/browser/startup_helper.cc index 6f60a96a25c..982546b57c2 100644 --- a/chromium/content/browser/startup_helper.cc +++ b/chromium/content/browser/startup_helper.cc @@ -34,8 +34,7 @@ std::unique_ptr<base::FieldTrialList> SetUpFieldTrialsAndFeatureList() { // Create field trials without activating them, so that this behaves in a // consistent manner with field trials created from the server. bool result = base::FieldTrialList::CreateTrialsFromString( - command_line->GetSwitchValueASCII(::switches::kForceFieldTrials), - std::set<std::string>()); + command_line->GetSwitchValueASCII(::switches::kForceFieldTrials)); CHECK(result) << "Invalid --" << ::switches::kForceFieldTrials << " list specified."; } |