| Index: chrome/browser/chrome_browser_main.cc
|
| ===================================================================
|
| --- chrome/browser/chrome_browser_main.cc (revision 208942)
|
| +++ chrome/browser/chrome_browser_main.cc (working copy)
|
| @@ -612,7 +612,9 @@
|
| if (command_line->HasSwitch(switches::kForceFieldTrials)) {
|
| std::string persistent = command_line->GetSwitchValueASCII(
|
| switches::kForceFieldTrials);
|
| - bool ret = base::FieldTrialList::CreateTrialsFromString(persistent);
|
| + // Create field trials without activating them, so that this behaves in a
|
| + // consitent manner with field trials created from the server.
|
| + bool ret = base::FieldTrialList::CreateTrialsFromString(persistent, false);
|
| CHECK(ret) << "Invalid --" << switches::kForceFieldTrials <<
|
| " list specified.";
|
| }
|
|
|