| 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 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 | 709 |
| 710 // Enables save password prompt bubble. | 710 // Enables save password prompt bubble. |
| 711 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; | 711 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; |
| 712 | 712 |
| 713 // Controls the support for SDCH filtering (dictionary based expansion of | 713 // Controls the support for SDCH filtering (dictionary based expansion of |
| 714 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 714 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 715 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 715 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 716 // supported server-side for searches on google.com. | 716 // supported server-side for searches on google.com. |
| 717 const char kEnableSdch[] = "enable-sdch"; | 717 const char kEnableSdch[] = "enable-sdch"; |
| 718 | 718 |
| 719 // Enable requesting Certificate Transparency Signed Certificate Timestamps |
| 720 // over a TLS extension. |
| 721 const char kEnableSignedCertTimestamps[] = "enable-signed-cert-timestamps"; |
| 722 |
| 719 // Enables support of sticky keys. | 723 // Enables support of sticky keys. |
| 720 const char kEnableStickyKeys[] = "enable-sticky-keys"; | 724 const char kEnableStickyKeys[] = "enable-sticky-keys"; |
| 721 | 725 |
| 722 // Disables support of sticky keys. | 726 // Disables support of sticky keys. |
| 723 const char kDisableStickyKeys[] = "disable-sticky-keys"; | 727 const char kDisableStickyKeys[] = "disable-sticky-keys"; |
| 724 | 728 |
| 725 // Enable SPDY/2. This is a temporary testing flag. See | 729 // Enable SPDY/2. This is a temporary testing flag. See |
| 726 // http://crbug.com/303957 . | 730 // http://crbug.com/303957 . |
| 727 const char kEnableSpdy2[] = "enable-spdy2"; | 731 const char kEnableSpdy2[] = "enable-spdy2"; |
| 728 | 732 |
| (...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1626 | 1630 |
| 1627 // ----------------------------------------------------------------------------- | 1631 // ----------------------------------------------------------------------------- |
| 1628 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1632 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1629 // | 1633 // |
| 1630 // You were going to just dump your switches here, weren't you? Instead, please | 1634 // You were going to just dump your switches here, weren't you? Instead, please |
| 1631 // put them in alphabetical order above, or in order inside the appropriate | 1635 // put them in alphabetical order above, or in order inside the appropriate |
| 1632 // ifdef at the bottom. The order should match the header. | 1636 // ifdef at the bottom. The order should match the header. |
| 1633 // ----------------------------------------------------------------------------- | 1637 // ----------------------------------------------------------------------------- |
| 1634 | 1638 |
| 1635 } // namespace switches | 1639 } // namespace switches |
| OLD | NEW |