OLD | NEW |
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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 "enable-extension-activity-logging"; | 432 "enable-extension-activity-logging"; |
433 | 433 |
434 const char kEnableExtensionActivityLogTesting[] = | 434 const char kEnableExtensionActivityLogTesting[] = |
435 "enable-extension-activity-log-testing"; | 435 "enable-extension-activity-log-testing"; |
436 | 436 |
437 // Enable the fast unload controller, which speeds up tab/window close by | 437 // Enable the fast unload controller, which speeds up tab/window close by |
438 // running a tab's onunload js handler independently of the GUI - | 438 // running a tab's onunload js handler independently of the GUI - |
439 // crbug.com/142458 . | 439 // crbug.com/142458 . |
440 const char kEnableFastUnload[] = "enable-fast-unload"; | 440 const char kEnableFastUnload[] = "enable-fast-unload"; |
441 | 441 |
| 442 // Enable all field trial tests configured in fieldtrial_testing_config.json. |
| 443 const char kEnableFieldTrialTestingConfig[] = "enable-field-trial-config"; |
| 444 |
442 // Enables experimentation with launching ephemeral apps via hyperlinks. | 445 // Enables experimentation with launching ephemeral apps via hyperlinks. |
443 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; | 446 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; |
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) |
449 // Enables Media Router. | 452 // Enables Media Router. |
450 const char kEnableMediaRouter[] = "enable-media-router"; | 453 const char kEnableMediaRouter[] = "enable-media-router"; |
451 #endif | 454 #endif |
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1376 | 1379 |
1377 // ----------------------------------------------------------------------------- | 1380 // ----------------------------------------------------------------------------- |
1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1379 // | 1382 // |
1380 // You were going to just dump your switches here, weren't you? Instead, please | 1383 // You were going to just dump your switches here, weren't you? Instead, please |
1381 // put them in alphabetical order above, or in order inside the appropriate | 1384 // put them in alphabetical order above, or in order inside the appropriate |
1382 // ifdef at the bottom. The order should match the header. | 1385 // ifdef at the bottom. The order should match the header. |
1383 // ----------------------------------------------------------------------------- | 1386 // ----------------------------------------------------------------------------- |
1384 | 1387 |
1385 } // namespace switches | 1388 } // namespace switches |
OLD | NEW |