Chromium Code Reviews| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 456 "enable-extension-activity-logging"; | 456 "enable-extension-activity-logging"; |
| 457 | 457 |
| 458 const char kEnableExtensionActivityLogTesting[] = | 458 const char kEnableExtensionActivityLogTesting[] = |
| 459 "enable-extension-activity-log-testing"; | 459 "enable-extension-activity-log-testing"; |
| 460 | 460 |
| 461 // Enable the fast unload controller, which speeds up tab/window close by | 461 // Enable the fast unload controller, which speeds up tab/window close by |
| 462 // running a tab's onunload js handler independently of the GUI - | 462 // running a tab's onunload js handler independently of the GUI - |
| 463 // crbug.com/142458 . | 463 // crbug.com/142458 . |
| 464 const char kEnableFastUnload[] = "enable-fast-unload"; | 464 const char kEnableFastUnload[] = "enable-fast-unload"; |
| 465 | 465 |
| 466 // Enable opt-in for the collection of invalid TLS/SSL certificate chains. | 466 |
| 467 const char kEnableInvalidCertCollection[] = "enable-invalid-cert-collection"; | 467 // Enables large icons on the New Tab page. |
| 468 const char kEnableIconNtp[] = "enable-icon-ntp"; | |
|
estark
2015/04/04 01:17:06
I don't think this should be here... mix-up during
fahl
2015/04/13 18:44:01
Done.
| |
| 468 | 469 |
| 469 // Enables IPv6 support, even if probes suggest that it may not be fully | 470 // Enables IPv6 support, even if probes suggest that it may not be fully |
| 470 // supported. Some probes may require internet connections, and this flag will | 471 // supported. Some probes may require internet connections, and this flag will |
| 471 // allow support independent of application testing. This flag overrides | 472 // allow support independent of application testing. This flag overrides |
| 472 // "disable-ipv6" which appears elswhere in this file. | 473 // "disable-ipv6" which appears elswhere in this file. |
| 473 const char kEnableIPv6[] = "enable-ipv6"; | 474 const char kEnableIPv6[] = "enable-ipv6"; |
| 474 | 475 |
| 475 // Enables experimentation with launching ephemeral apps via hyperlinks. | 476 // Enables experimentation with launching ephemeral apps via hyperlinks. |
| 476 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; | 477 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; |
| 477 | 478 |
| (...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1415 | 1416 |
| 1416 // ----------------------------------------------------------------------------- | 1417 // ----------------------------------------------------------------------------- |
| 1417 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1418 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1418 // | 1419 // |
| 1419 // You were going to just dump your switches here, weren't you? Instead, please | 1420 // You were going to just dump your switches here, weren't you? Instead, please |
| 1420 // put them in alphabetical order above, or in order inside the appropriate | 1421 // put them in alphabetical order above, or in order inside the appropriate |
| 1421 // ifdef at the bottom. The order should match the header. | 1422 // ifdef at the bottom. The order should match the header. |
| 1422 // ----------------------------------------------------------------------------- | 1423 // ----------------------------------------------------------------------------- |
| 1423 | 1424 |
| 1424 } // namespace switches | 1425 } // namespace switches |
| OLD | NEW |