| 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 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 // Enables support for the QUIC protocol. This is a temporary testing flag. | 713 // Enables support for the QUIC protocol. This is a temporary testing flag. |
| 714 const char kEnableQuic[] = "enable-quic"; | 714 const char kEnableQuic[] = "enable-quic"; |
| 715 | 715 |
| 716 // Enables support for the HTTPS over QUIC protocol. This is a temporary | 716 // Enables support for the HTTPS over QUIC protocol. This is a temporary |
| 717 // testing flag. This only has an effect if QUIC protocol is enabled. | 717 // testing flag. This only has an effect if QUIC protocol is enabled. |
| 718 const char kEnableQuicHttps[] = "enable-quic-https"; | 718 const char kEnableQuicHttps[] = "enable-quic-https"; |
| 719 | 719 |
| 720 // Enables the Quickoffoce/Chrome document viewer rather than the editor. | 720 // Enables the Quickoffoce/Chrome document viewer rather than the editor. |
| 721 const char kEnableQuickofficeViewing[] = "enable-quickoffice-viewing"; | 721 const char kEnableQuickofficeViewing[] = "enable-quickoffice-viewing"; |
| 722 | 722 |
| 723 // Enables content settings based on host *and* plug-in in the user | |
| 724 // preferences. | |
| 725 const char kEnableResourceContentSettings[] = | |
| 726 "enable-resource-content-settings"; | |
| 727 | |
| 728 // Enables save password prompt bubble. | 723 // Enables save password prompt bubble. |
| 729 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; | 724 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; |
| 730 | 725 |
| 731 // Controls the support for SDCH filtering (dictionary based expansion of | 726 // Controls the support for SDCH filtering (dictionary based expansion of |
| 732 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 727 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 733 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 728 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 734 // supported server-side for searches on google.com. | 729 // supported server-side for searches on google.com. |
| 735 const char kEnableSdch[] = "enable-sdch"; | 730 const char kEnableSdch[] = "enable-sdch"; |
| 736 | 731 |
| 737 // Enables support of sticky keys. | 732 // Enables support of sticky keys. |
| (...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1669 | 1664 |
| 1670 // ----------------------------------------------------------------------------- | 1665 // ----------------------------------------------------------------------------- |
| 1671 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1666 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1672 // | 1667 // |
| 1673 // You were going to just dump your switches here, weren't you? Instead, please | 1668 // You were going to just dump your switches here, weren't you? Instead, please |
| 1674 // put them in alphabetical order above, or in order inside the appropriate | 1669 // put them in alphabetical order above, or in order inside the appropriate |
| 1675 // ifdef at the bottom. The order should match the header. | 1670 // ifdef at the bottom. The order should match the header. |
| 1676 // ----------------------------------------------------------------------------- | 1671 // ----------------------------------------------------------------------------- |
| 1677 | 1672 |
| 1678 } // namespace switches | 1673 } // namespace switches |
| OLD | NEW |