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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
452 "enable-extension-activity-logging"; | 452 "enable-extension-activity-logging"; |
453 | 453 |
454 const char kEnableExtensionActivityLogTesting[] = | 454 const char kEnableExtensionActivityLogTesting[] = |
455 "enable-extension-activity-log-testing"; | 455 "enable-extension-activity-log-testing"; |
456 | 456 |
457 // Enable the fast unload controller, which speeds up tab/window close by | 457 // Enable the fast unload controller, which speeds up tab/window close by |
458 // running a tab's onunload js handler independently of the GUI - | 458 // running a tab's onunload js handler independently of the GUI - |
459 // crbug.com/142458 . | 459 // crbug.com/142458 . |
460 const char kEnableFastUnload[] = "enable-fast-unload"; | 460 const char kEnableFastUnload[] = "enable-fast-unload"; |
461 | 461 |
| 462 // Enable opt-in for the collection of invalid TLS/SSL certificate chains. |
| 463 const char kEnableInvalidCertCollection[] = "enable-invalid-cert-collection"; |
| 464 |
462 // Enables IPv6 support, even if probes suggest that it may not be fully | 465 // Enables IPv6 support, even if probes suggest that it may not be fully |
463 // supported. Some probes may require internet connections, and this flag will | 466 // supported. Some probes may require internet connections, and this flag will |
464 // allow support independent of application testing. This flag overrides | 467 // allow support independent of application testing. This flag overrides |
465 // "disable-ipv6" which appears elswhere in this file. | 468 // "disable-ipv6" which appears elswhere in this file. |
466 const char kEnableIPv6[] = "enable-ipv6"; | 469 const char kEnableIPv6[] = "enable-ipv6"; |
467 | 470 |
468 // Enables experimentation with launching ephemeral apps via hyperlinks. | 471 // Enables experimentation with launching ephemeral apps via hyperlinks. |
469 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; | 472 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; |
470 | 473 |
471 // Enables the material design Settings feature. | 474 // Enables the material design Settings feature. |
(...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1402 | 1405 |
1403 // ----------------------------------------------------------------------------- | 1406 // ----------------------------------------------------------------------------- |
1404 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1407 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1405 // | 1408 // |
1406 // You were going to just dump your switches here, weren't you? Instead, please | 1409 // You were going to just dump your switches here, weren't you? Instead, please |
1407 // put them in alphabetical order above, or in order inside the appropriate | 1410 // put them in alphabetical order above, or in order inside the appropriate |
1408 // ifdef at the bottom. The order should match the header. | 1411 // ifdef at the bottom. The order should match the header. |
1409 // ----------------------------------------------------------------------------- | 1412 // ----------------------------------------------------------------------------- |
1410 | 1413 |
1411 } // namespace switches | 1414 } // namespace switches |
OLD | NEW |