| 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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 const char kEnableSyncFavicons[] = "enable-sync-favicons"; | 653 const char kEnableSyncFavicons[] = "enable-sync-favicons"; |
| 654 | 654 |
| 655 // Enables context menu for selecting groups of tabs. | 655 // Enables context menu for selecting groups of tabs. |
| 656 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 656 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
| 657 | 657 |
| 658 // Enables Chrome Translate for "alpha languages", that may have less-reliable | 658 // Enables Chrome Translate for "alpha languages", that may have less-reliable |
| 659 // translation quality than supported languages. | 659 // translation quality than supported languages. |
| 660 const char kEnableTranslateAlphaLanguages[] = | 660 const char kEnableTranslateAlphaLanguages[] = |
| 661 "enable-translate-alpha-languages"; | 661 "enable-translate-alpha-languages"; |
| 662 | 662 |
| 663 // Enables unrestricted SSL 3.0 fallback. |
| 664 // With this switch, SSL 3.0 fallback will be enabled for all sites. |
| 665 // Without this switch, SSL 3.0 fallback will be disabled for a site |
| 666 // pinned to the Google pin list (indicating that it is a Google site). |
| 667 const char kEnableUnrestrictedSSL3Fallback[] = |
| 668 "enable-unrestricted-ssl3-fallback"; |
| 669 |
| 663 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 670 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
| 664 const char kEnableUserAlternateProtocolPorts[] = | 671 const char kEnableUserAlternateProtocolPorts[] = |
| 665 "enable-user-controlled-alternate-protocol-ports"; | 672 "enable-user-controlled-alternate-protocol-ports"; |
| 666 | 673 |
| 667 // Spawns threads to watch for excessive delays in specified message loops. | 674 // Spawns threads to watch for excessive delays in specified message loops. |
| 668 // User should set breakpoints on Alarm() to examine problematic thread. | 675 // User should set breakpoints on Alarm() to examine problematic thread. |
| 669 // | 676 // |
| 670 // Usage: -enable-watchdog=[ui][io] | 677 // Usage: -enable-watchdog=[ui][io] |
| 671 // | 678 // |
| 672 // Order of the listed sub-arguments does not matter. | 679 // Order of the listed sub-arguments does not matter. |
| (...skipping 1008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 | 1688 |
| 1682 // ----------------------------------------------------------------------------- | 1689 // ----------------------------------------------------------------------------- |
| 1683 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1690 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1684 // | 1691 // |
| 1685 // You were going to just dump your switches here, weren't you? Instead, please | 1692 // You were going to just dump your switches here, weren't you? Instead, please |
| 1686 // put them in alphabetical order above, or in order inside the appropriate | 1693 // put them in alphabetical order above, or in order inside the appropriate |
| 1687 // ifdef at the bottom. The order should match the header. | 1694 // ifdef at the bottom. The order should match the header. |
| 1688 // ----------------------------------------------------------------------------- | 1695 // ----------------------------------------------------------------------------- |
| 1689 | 1696 |
| 1690 } // namespace switches | 1697 } // namespace switches |
| OLD | NEW |