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 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 // Enables support for the QUIC protocol. This is a temporary testing flag. | 674 // Enables support for the QUIC protocol. This is a temporary testing flag. |
675 const char kEnableQuic[] = "enable-quic"; | 675 const char kEnableQuic[] = "enable-quic"; |
676 | 676 |
677 // Enables support for the HTTPS over QUIC protocol. This is a temporary | 677 // Enables support for the HTTPS over QUIC protocol. This is a temporary |
678 // testing flag. This only has an effect if QUIC protocol is enabled. | 678 // testing flag. This only has an effect if QUIC protocol is enabled. |
679 const char kEnableQuicHttps[] = "enable-quic-https"; | 679 const char kEnableQuicHttps[] = "enable-quic-https"; |
680 | 680 |
681 // Enables the Quickoffoce/Chrome document viewer rather than the editor. | 681 // Enables the Quickoffoce/Chrome document viewer rather than the editor. |
682 const char kEnableQuickofficeViewing[] = "enable-quickoffice-viewing"; | 682 const char kEnableQuickofficeViewing[] = "enable-quickoffice-viewing"; |
683 | 683 |
684 // Enables support in chrome://settings to reset settings in your profile | |
685 // that are often touched by malware. | |
686 const char kEnableResetProfileSettings[] = "enable-reset-profile-settings"; | |
687 | |
688 // Enables content settings based on host *and* plug-in in the user | 684 // Enables content settings based on host *and* plug-in in the user |
689 // preferences. | 685 // preferences. |
690 const char kEnableResourceContentSettings[] = | 686 const char kEnableResourceContentSettings[] = |
691 "enable-resource-content-settings"; | 687 "enable-resource-content-settings"; |
692 | 688 |
693 // Enables save password prompt bubble. | 689 // Enables save password prompt bubble. |
694 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; | 690 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; |
695 | 691 |
696 // Controls the support for SDCH filtering (dictionary based expansion of | 692 // Controls the support for SDCH filtering (dictionary based expansion of |
697 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 693 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
(...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1610 | 1606 |
1611 // ----------------------------------------------------------------------------- | 1607 // ----------------------------------------------------------------------------- |
1612 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1608 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1613 // | 1609 // |
1614 // You were going to just dump your switches here, weren't you? Instead, please | 1610 // You were going to just dump your switches here, weren't you? Instead, please |
1615 // put them in alphabetical order above, or in order inside the appropriate | 1611 // put them in alphabetical order above, or in order inside the appropriate |
1616 // ifdef at the bottom. The order should match the header. | 1612 // ifdef at the bottom. The order should match the header. |
1617 // ----------------------------------------------------------------------------- | 1613 // ----------------------------------------------------------------------------- |
1618 | 1614 |
1619 } // namespace switches | 1615 } // namespace switches |
OLD | NEW |