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 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 // Enables context menu for selecting groups of tabs. | 734 // Enables context menu for selecting groups of tabs. |
735 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 735 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
736 | 736 |
737 // Enables fanciful thumbnail processing. Used with NTP for | 737 // Enables fanciful thumbnail processing. Used with NTP for |
738 // instant-extended-api, where thumbnails are generally smaller. | 738 // instant-extended-api, where thumbnails are generally smaller. |
739 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 739 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
740 | 740 |
741 // Enables Translate experimental new UX which replaces the infobar. | 741 // Enables Translate experimental new UX which replaces the infobar. |
742 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; | 742 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; |
743 | 743 |
744 // Enables Translate settings in chrome://settings/languages. | |
745 const char kEnableTranslateSettings[] = "enable-translate-settings"; | |
746 | |
747 // Enables unrestricted SSL 3.0 fallback. | 744 // Enables unrestricted SSL 3.0 fallback. |
748 // With this switch, SSL 3.0 fallback will be enabled for all sites. | 745 // With this switch, SSL 3.0 fallback will be enabled for all sites. |
749 // Without this switch, SSL 3.0 fallback will be disabled for a site | 746 // Without this switch, SSL 3.0 fallback will be disabled for a site |
750 // pinned to the Google pin list (indicating that it is a Google site). | 747 // pinned to the Google pin list (indicating that it is a Google site). |
751 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 | 748 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 |
752 // fallback is always enabled, with or without this switch. | 749 // fallback is always enabled, with or without this switch. |
753 const char kEnableUnrestrictedSSL3Fallback[] = | 750 const char kEnableUnrestrictedSSL3Fallback[] = |
754 "enable-unrestricted-ssl3-fallback"; | 751 "enable-unrestricted-ssl3-fallback"; |
755 | 752 |
756 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 753 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1607 | 1604 |
1608 // ----------------------------------------------------------------------------- | 1605 // ----------------------------------------------------------------------------- |
1609 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1606 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1610 // | 1607 // |
1611 // You were going to just dump your switches here, weren't you? Instead, please | 1608 // You were going to just dump your switches here, weren't you? Instead, please |
1612 // put them in alphabetical order above, or in order inside the appropriate | 1609 // put them in alphabetical order above, or in order inside the appropriate |
1613 // ifdef at the bottom. The order should match the header. | 1610 // ifdef at the bottom. The order should match the header. |
1614 // ----------------------------------------------------------------------------- | 1611 // ----------------------------------------------------------------------------- |
1615 | 1612 |
1616 } // namespace switches | 1613 } // namespace switches |
OLD | NEW |