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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 const char kEnableSyncSyncedNotifications[] = | 680 const char kEnableSyncSyncedNotifications[] = |
681 "enable-sync-synced-notifications"; | 681 "enable-sync-synced-notifications"; |
682 | 682 |
683 // Enables context menu for selecting groups of tabs. | 683 // Enables context menu for selecting groups of tabs. |
684 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 684 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
685 | 685 |
686 // Enables fanciful thumbnail processing. Used with NTP for | 686 // Enables fanciful thumbnail processing. Used with NTP for |
687 // instant-extended-api, where thumbnails are generally smaller. | 687 // instant-extended-api, where thumbnails are generally smaller. |
688 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 688 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
689 | 689 |
690 // Enables Chrome Translate for "alpha languages", that may have less-reliable | |
691 // translation quality than supported languages. | |
692 const char kEnableTranslateAlphaLanguages[] = | |
693 "enable-translate-alpha-languages"; | |
694 | |
695 // Enables unrestricted SSL 3.0 fallback. | 690 // Enables unrestricted SSL 3.0 fallback. |
696 // With this switch, SSL 3.0 fallback will be enabled for all sites. | 691 // With this switch, SSL 3.0 fallback will be enabled for all sites. |
697 // Without this switch, SSL 3.0 fallback will be disabled for a site | 692 // Without this switch, SSL 3.0 fallback will be disabled for a site |
698 // pinned to the Google pin list (indicating that it is a Google site). | 693 // pinned to the Google pin list (indicating that it is a Google site). |
699 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 | 694 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 |
700 // fallback is always enabled, with or without this switch. | 695 // fallback is always enabled, with or without this switch. |
701 const char kEnableUnrestrictedSSL3Fallback[] = | 696 const char kEnableUnrestrictedSSL3Fallback[] = |
702 "enable-unrestricted-ssl3-fallback"; | 697 "enable-unrestricted-ssl3-fallback"; |
703 | 698 |
704 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 699 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1593 | 1588 |
1594 // ----------------------------------------------------------------------------- | 1589 // ----------------------------------------------------------------------------- |
1595 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1590 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1596 // | 1591 // |
1597 // You were going to just dump your switches here, weren't you? Instead, please | 1592 // You were going to just dump your switches here, weren't you? Instead, please |
1598 // put them in alphabetical order above, or in order inside the appropriate | 1593 // put them in alphabetical order above, or in order inside the appropriate |
1599 // ifdef at the bottom. The order should match the header. | 1594 // ifdef at the bottom. The order should match the header. |
1600 // ----------------------------------------------------------------------------- | 1595 // ----------------------------------------------------------------------------- |
1601 | 1596 |
1602 } // namespace switches | 1597 } // namespace switches |
OLD | NEW |