| 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 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 // during chrome_browser_main. | 660 // during chrome_browser_main. |
| 661 const char kEnableProfiling[] = "enable-profiling"; | 661 const char kEnableProfiling[] = "enable-profiling"; |
| 662 | 662 |
| 663 // Enables support for the QUIC protocol. This is a temporary testing flag. | 663 // Enables support for the QUIC protocol. This is a temporary testing flag. |
| 664 const char kEnableQuic[] = "enable-quic"; | 664 const char kEnableQuic[] = "enable-quic"; |
| 665 | 665 |
| 666 // Enables support for the HTTPS over QUIC protocol. This is a temporary | 666 // Enables support for the HTTPS over QUIC protocol. This is a temporary |
| 667 // testing flag. This only has an effect if QUIC protocol is enabled. | 667 // testing flag. This only has an effect if QUIC protocol is enabled. |
| 668 const char kEnableQuicHttps[] = "enable-quic-https"; | 668 const char kEnableQuicHttps[] = "enable-quic-https"; |
| 669 | 669 |
| 670 // Enables the Quickoffoce/Chrome document editor rather than the viewer. | 670 // Enables the Quickoffoce/Chrome document viewer rather than the editor. |
| 671 const char kEnableQuickofficeEdit[] = "enable-quickoffice-editing"; | 671 const char kEnableQuickofficeViewing[] = "enable-quickoffice-viewing"; |
| 672 | 672 |
| 673 // Enables support in chrome://settings to reset settings in your profile | 673 // Enables support in chrome://settings to reset settings in your profile |
| 674 // that are often touched by malware. | 674 // that are often touched by malware. |
| 675 const char kEnableResetProfileSettings[] = "enable-reset-profile-settings"; | 675 const char kEnableResetProfileSettings[] = "enable-reset-profile-settings"; |
| 676 | 676 |
| 677 // Enables content settings based on host *and* plug-in in the user | 677 // Enables content settings based on host *and* plug-in in the user |
| 678 // preferences. | 678 // preferences. |
| 679 const char kEnableResourceContentSettings[] = | 679 const char kEnableResourceContentSettings[] = |
| 680 "enable-resource-content-settings"; | 680 "enable-resource-content-settings"; |
| 681 | 681 |
| (...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1606 | 1606 |
| 1607 // ----------------------------------------------------------------------------- | 1607 // ----------------------------------------------------------------------------- |
| 1608 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1608 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1609 // | 1609 // |
| 1610 // 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 |
| 1611 // 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 |
| 1612 // ifdef at the bottom. The order should match the header. | 1612 // ifdef at the bottom. The order should match the header. |
| 1613 // ----------------------------------------------------------------------------- | 1613 // ----------------------------------------------------------------------------- |
| 1614 | 1614 |
| 1615 } // namespace switches | 1615 } // namespace switches |
| OLD | NEW |