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