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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 "enable-password-manager-reauthentication"; | 575 "enable-password-manager-reauthentication"; |
576 | 576 |
577 // Enables the pre- and auto-login features. When a user signs in to sync, the | 577 // Enables the pre- and auto-login features. When a user signs in to sync, the |
578 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 578 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
579 // GAIA login page, an info bar can help the user login. | 579 // GAIA login page, an info bar can help the user login. |
580 const char kEnableAutologin[] = "enable-autologin"; | 580 const char kEnableAutologin[] = "enable-autologin"; |
581 | 581 |
582 // Enables the benchmarking extensions. | 582 // Enables the benchmarking extensions. |
583 const char kEnableBenchmarking[] = "enable-benchmarking"; | 583 const char kEnableBenchmarking[] = "enable-benchmarking"; |
584 | 584 |
| 585 // Enables the checking of Signed Certificate Timestamps emitted as part of a |
| 586 // Certificate Transparency log. The Base64'd DER-encoded SubjectPublicKeyInfo |
| 587 // of the CT log's public key should be passed as the switch value. |
| 588 // XXX(rsleevi): Support more logs. |
| 589 const char kEnableCertificateTransparency[] = |
| 590 "enable-certificate-transparency"; |
| 591 |
585 // Enables client hints, which adds hints about browser state to HTTP requests. | 592 // Enables client hints, which adds hints about browser state to HTTP requests. |
586 const char kEnableClientHints[] = "enable-client-hints"; | 593 const char kEnableClientHints[] = "enable-client-hints"; |
587 | 594 |
588 // This applies only when the process type is "service". Enables the Cloud | 595 // This applies only when the process type is "service". Enables the Cloud |
589 // Print Proxy component within the service process. | 596 // Print Proxy component within the service process. |
590 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 597 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
591 | 598 |
592 // Enables fetching and storing cloud policy for components. This currently | 599 // Enables fetching and storing cloud policy for components. This currently |
593 // supports policy for extensions on Chrome OS. | 600 // supports policy for extensions on Chrome OS. |
594 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; | 601 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; |
(...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1645 | 1652 |
1646 // ----------------------------------------------------------------------------- | 1653 // ----------------------------------------------------------------------------- |
1647 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1654 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1648 // | 1655 // |
1649 // You were going to just dump your switches here, weren't you? Instead, please | 1656 // You were going to just dump your switches here, weren't you? Instead, please |
1650 // put them in alphabetical order above, or in order inside the appropriate | 1657 // put them in alphabetical order above, or in order inside the appropriate |
1651 // ifdef at the bottom. The order should match the header. | 1658 // ifdef at the bottom. The order should match the header. |
1652 // ----------------------------------------------------------------------------- | 1659 // ----------------------------------------------------------------------------- |
1653 | 1660 |
1654 } // namespace switches | 1661 } // namespace switches |
OLD | NEW |