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 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 | 777 |
778 // Disables sync/API based session sync implementation (back to legacy). | 778 // Disables sync/API based session sync implementation (back to legacy). |
779 const char kDisableSyncSessionsV2[] = "disable-sync-sessions-v2"; | 779 const char kDisableSyncSessionsV2[] = "disable-sync-sessions-v2"; |
780 | 780 |
781 // Enables syncing of the app list. | 781 // Enables syncing of the app list. |
782 const char kEnableSyncAppList[] = "enable-sync-app-list"; | 782 const char kEnableSyncAppList[] = "enable-sync-app-list"; |
783 | 783 |
784 // Enables synced articles. | 784 // Enables synced articles. |
785 const char kEnableSyncArticles[] = "enable-sync-articles"; | 785 const char kEnableSyncArticles[] = "enable-sync-articles"; |
786 | 786 |
787 // Enables context menu for selecting groups of tabs. | |
788 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | |
789 | |
790 // Enables fanciful thumbnail processing. Used with NTP for | 787 // Enables fanciful thumbnail processing. Used with NTP for |
791 // instant-extended-api, where thumbnails are generally smaller. | 788 // instant-extended-api, where thumbnails are generally smaller. |
792 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 789 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
793 | 790 |
794 // Enables Translate experimental new UX which replaces the infobar. | 791 // Enables Translate experimental new UX which replaces the infobar. |
795 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; | 792 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; |
796 | 793 |
797 // Enables unrestricted SSL 3.0 fallback. | 794 // Enables unrestricted SSL 3.0 fallback. |
798 // With this switch, SSL 3.0 fallback will be enabled for all sites. | 795 // With this switch, SSL 3.0 fallback will be enabled for all sites. |
799 // Without this switch, SSL 3.0 fallback will be disabled for a site | 796 // Without this switch, SSL 3.0 fallback will be disabled for a site |
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1649 | 1646 |
1650 // ----------------------------------------------------------------------------- | 1647 // ----------------------------------------------------------------------------- |
1651 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1648 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1652 // | 1649 // |
1653 // You were going to just dump your switches here, weren't you? Instead, please | 1650 // You were going to just dump your switches here, weren't you? Instead, please |
1654 // put them in alphabetical order above, or in order inside the appropriate | 1651 // put them in alphabetical order above, or in order inside the appropriate |
1655 // ifdef at the bottom. The order should match the header. | 1652 // ifdef at the bottom. The order should match the header. |
1656 // ----------------------------------------------------------------------------- | 1653 // ----------------------------------------------------------------------------- |
1657 | 1654 |
1658 } // namespace switches | 1655 } // namespace switches |
OLD | NEW |