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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1200383005: Activate prepopulated fieldtrials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@codegen_field_trials
Patch Set: fixup Created 5 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 "enable-extension-activity-logging"; 429 "enable-extension-activity-logging";
430 430
431 const char kEnableExtensionActivityLogTesting[] = 431 const char kEnableExtensionActivityLogTesting[] =
432 "enable-extension-activity-log-testing"; 432 "enable-extension-activity-log-testing";
433 433
434 // Enable the fast unload controller, which speeds up tab/window close by 434 // Enable the fast unload controller, which speeds up tab/window close by
435 // running a tab's onunload js handler independently of the GUI - 435 // running a tab's onunload js handler independently of the GUI -
436 // crbug.com/142458 . 436 // crbug.com/142458 .
437 const char kEnableFastUnload[] = "enable-fast-unload"; 437 const char kEnableFastUnload[] = "enable-fast-unload";
438 438
439 // Enable all field trial tests configured in fieldtrial_testing_config.json.
440 const char kEnableFieldTrialTestingConfig[] = "enable-field-trial-config";
441
439 // Enables experimentation with launching ephemeral apps via hyperlinks. 442 // Enables experimentation with launching ephemeral apps via hyperlinks.
440 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; 443 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps";
441 444
442 // Enables an experimental Material Design version of chrome://downloads. 445 // Enables an experimental Material Design version of chrome://downloads.
443 const char kEnableMaterialDesignDownloads[] = "enable-md-downloads"; 446 const char kEnableMaterialDesignDownloads[] = "enable-md-downloads";
444 447
445 // Enables the material design Settings feature. 448 // Enables the material design Settings feature.
446 const char kEnableMaterialDesignSettings[] = "enable-md-settings"; 449 const char kEnableMaterialDesignSettings[] = "enable-md-settings";
447 450
448 #if defined(ENABLE_MEDIA_ROUTER) 451 #if defined(ENABLE_MEDIA_ROUTER)
(...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 1392
1390 // ----------------------------------------------------------------------------- 1393 // -----------------------------------------------------------------------------
1391 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1394 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1392 // 1395 //
1393 // You were going to just dump your switches here, weren't you? Instead, please 1396 // You were going to just dump your switches here, weren't you? Instead, please
1394 // put them in alphabetical order above, or in order inside the appropriate 1397 // put them in alphabetical order above, or in order inside the appropriate
1395 // ifdef at the bottom. The order should match the header. 1398 // ifdef at the bottom. The order should match the header.
1396 // ----------------------------------------------------------------------------- 1399 // -----------------------------------------------------------------------------
1397 1400
1398 } // namespace switches 1401 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698