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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 // Enables synced favicons | 676 // Enables synced favicons |
677 const char kEnableSyncFavicons[] = "enable-sync-favicons"; | 677 const char kEnableSyncFavicons[] = "enable-sync-favicons"; |
678 | 678 |
679 // Enables synced notifications. | 679 // Enables synced notifications. |
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 |
| 687 // instant-extended-api, where thumbnails are generally smaller. |
| 688 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
| 689 |
686 // Enables Chrome Translate for "alpha languages", that may have less-reliable | 690 // Enables Chrome Translate for "alpha languages", that may have less-reliable |
687 // translation quality than supported languages. | 691 // translation quality than supported languages. |
688 const char kEnableTranslateAlphaLanguages[] = | 692 const char kEnableTranslateAlphaLanguages[] = |
689 "enable-translate-alpha-languages"; | 693 "enable-translate-alpha-languages"; |
690 | 694 |
691 // Enables unrestricted SSL 3.0 fallback. | 695 // Enables unrestricted SSL 3.0 fallback. |
692 // With this switch, SSL 3.0 fallback will be enabled for all sites. | 696 // With this switch, SSL 3.0 fallback will be enabled for all sites. |
693 // Without this switch, SSL 3.0 fallback will be disabled for a site | 697 // Without this switch, SSL 3.0 fallback will be disabled for a site |
694 // pinned to the Google pin list (indicating that it is a Google site). | 698 // pinned to the Google pin list (indicating that it is a Google site). |
695 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 | 699 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 |
(...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1593 | 1597 |
1594 // ----------------------------------------------------------------------------- | 1598 // ----------------------------------------------------------------------------- |
1595 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1599 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1596 // | 1600 // |
1597 // You were going to just dump your switches here, weren't you? Instead, please | 1601 // 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 | 1602 // put them in alphabetical order above, or in order inside the appropriate |
1599 // ifdef at the bottom. The order should match the header. | 1603 // ifdef at the bottom. The order should match the header. |
1600 // ----------------------------------------------------------------------------- | 1604 // ----------------------------------------------------------------------------- |
1601 | 1605 |
1602 } // namespace switches | 1606 } // namespace switches |
OLD | NEW |