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 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
657 // Enables synced favicons | 657 // Enables synced favicons |
658 const char kEnableSyncFavicons[] = "enable-sync-favicons"; | 658 const char kEnableSyncFavicons[] = "enable-sync-favicons"; |
659 | 659 |
660 // Enables synced notifications. | 660 // Enables synced notifications. |
661 const char kEnableSyncSyncedNotifications[] = | 661 const char kEnableSyncSyncedNotifications[] = |
662 "enable-sync-synced-notifications"; | 662 "enable-sync-synced-notifications"; |
663 | 663 |
664 // Enables context menu for selecting groups of tabs. | 664 // Enables context menu for selecting groups of tabs. |
665 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 665 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
666 | 666 |
| 667 // Enables fanciful thumbnail processing. Used with NTP for |
| 668 // instant-extended-api, where thumbnails are generally smaller. |
| 669 const char kEnableThumbnailRetargetting[] = "enable-thumbnail-retargetting"; |
| 670 |
667 // Enables Chrome Translate for "alpha languages", that may have less-reliable | 671 // Enables Chrome Translate for "alpha languages", that may have less-reliable |
668 // translation quality than supported languages. | 672 // translation quality than supported languages. |
669 const char kEnableTranslateAlphaLanguages[] = | 673 const char kEnableTranslateAlphaLanguages[] = |
670 "enable-translate-alpha-languages"; | 674 "enable-translate-alpha-languages"; |
671 | 675 |
672 // Enables unrestricted SSL 3.0 fallback. | 676 // Enables unrestricted SSL 3.0 fallback. |
673 // With this switch, SSL 3.0 fallback will be enabled for all sites. | 677 // With this switch, SSL 3.0 fallback will be enabled for all sites. |
674 // Without this switch, SSL 3.0 fallback will be disabled for a site | 678 // Without this switch, SSL 3.0 fallback will be disabled for a site |
675 // pinned to the Google pin list (indicating that it is a Google site). | 679 // pinned to the Google pin list (indicating that it is a Google site). |
676 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 | 680 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 |
(...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1586 | 1590 |
1587 // ----------------------------------------------------------------------------- | 1591 // ----------------------------------------------------------------------------- |
1588 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1592 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1589 // | 1593 // |
1590 // You were going to just dump your switches here, weren't you? Instead, please | 1594 // You were going to just dump your switches here, weren't you? Instead, please |
1591 // put them in alphabetical order above, or in order inside the appropriate | 1595 // put them in alphabetical order above, or in order inside the appropriate |
1592 // ifdef at the bottom. The order should match the header. | 1596 // ifdef at the bottom. The order should match the header. |
1593 // ----------------------------------------------------------------------------- | 1597 // ----------------------------------------------------------------------------- |
1594 | 1598 |
1595 } // namespace switches | 1599 } // namespace switches |
OLD | NEW |