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

Unified Diff: content/renderer/renderer_main.cc

Issue 153913009: Make some field trials unforceable via command-line in the official build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pass a set rather than using a callback Created 6 years, 10 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/chrome_browser_main.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_main.cc
diff --git a/content/renderer/renderer_main.cc b/content/renderer/renderer_main.cc
index 634684c58fe2fabf8f591cbaf00159ea557d58d0..96008198aa1fb1e017df2f2da7f018cbc2750d5a 100644
--- a/content/renderer/renderer_main.cc
+++ b/content/renderer/renderer_main.cc
@@ -193,7 +193,7 @@ int RendererMain(const MainFunctionParams& parameters) {
// reported in crash reports.
bool result = base::FieldTrialList::CreateTrialsFromString(
parsed_command_line.GetSwitchValueASCII(switches::kForceFieldTrials),
- base::FieldTrialList::ACTIVATE_TRIALS);
+ base::FieldTrialList::ACTIVATE_TRIALS, std::set<std::string>());
jamesr 2014/02/13 01:06:30 new parameter, new line
gab 2014/02/13 02:49:03 Done.
DCHECK(result);
}
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698