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 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
664 // Enables synced favicons | 664 // Enables synced favicons |
665 const char kEnableSyncFavicons[] = "enable-sync-favicons"; | 665 const char kEnableSyncFavicons[] = "enable-sync-favicons"; |
666 | 666 |
667 // Enables synced notifications. | 667 // Enables synced notifications. |
668 const char kEnableSyncSyncedNotifications[] = | 668 const char kEnableSyncSyncedNotifications[] = |
669 "enable-sync-synced-notifications"; | 669 "enable-sync-synced-notifications"; |
670 | 670 |
671 // Enables context menu for selecting groups of tabs. | 671 // Enables context menu for selecting groups of tabs. |
672 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 672 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
673 | 673 |
674 // Enables fanciful thumbnail processing. Used with NTP for | |
675 // instant-extended-api, where thumbnails are generally smaller. | |
676 const char kEnableThumbnailRetargetting[] = "enable-thumbnail-retargetting"; | |
Nico
2013/05/30 18:19:17
"Retargeting" with just one "t" I think?
motek.
2013/05/30 20:25:09
Depends on your version of English, I suppose. Any
| |
677 | |
674 // Enables Chrome Translate for "alpha languages", that may have less-reliable | 678 // Enables Chrome Translate for "alpha languages", that may have less-reliable |
675 // translation quality than supported languages. | 679 // translation quality than supported languages. |
676 const char kEnableTranslateAlphaLanguages[] = | 680 const char kEnableTranslateAlphaLanguages[] = |
677 "enable-translate-alpha-languages"; | 681 "enable-translate-alpha-languages"; |
678 | 682 |
679 // Enables unrestricted SSL 3.0 fallback. | 683 // Enables unrestricted SSL 3.0 fallback. |
680 // With this switch, SSL 3.0 fallback will be enabled for all sites. | 684 // With this switch, SSL 3.0 fallback will be enabled for all sites. |
681 // Without this switch, SSL 3.0 fallback will be disabled for a site | 685 // Without this switch, SSL 3.0 fallback will be disabled for a site |
682 // pinned to the Google pin list (indicating that it is a Google site). | 686 // pinned to the Google pin list (indicating that it is a Google site). |
683 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 | 687 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 |
(...skipping 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1591 | 1595 |
1592 // ----------------------------------------------------------------------------- | 1596 // ----------------------------------------------------------------------------- |
1593 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1597 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1594 // | 1598 // |
1595 // You were going to just dump your switches here, weren't you? Instead, please | 1599 // You were going to just dump your switches here, weren't you? Instead, please |
1596 // put them in alphabetical order above, or in order inside the appropriate | 1600 // put them in alphabetical order above, or in order inside the appropriate |
1597 // ifdef at the bottom. The order should match the header. | 1601 // ifdef at the bottom. The order should match the header. |
1598 // ----------------------------------------------------------------------------- | 1602 // ----------------------------------------------------------------------------- |
1599 | 1603 |
1600 } // namespace switches | 1604 } // namespace switches |
OLD | NEW |