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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 // Enables an experimental hosted app experience. | 759 // Enables an experimental hosted app experience. |
760 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; | 760 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; |
761 | 761 |
762 // Enables experimental suggestions pane in New Tab page. | 762 // Enables experimental suggestions pane in New Tab page. |
763 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 763 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
764 | 764 |
765 // Enables synced notifications. | 765 // Enables synced notifications. |
766 const char kEnableSyncSyncedNotifications[] = | 766 const char kEnableSyncSyncedNotifications[] = |
767 "enable-sync-synced-notifications"; | 767 "enable-sync-synced-notifications"; |
768 | 768 |
| 769 // Enables sync/API based session sync implementation (in favor of legacy). |
| 770 const char kEnableSyncSessionsV2[] = "enable-sync-sessions-v2"; |
| 771 |
769 // Enables synced articles. | 772 // Enables synced articles. |
770 const char kEnableSyncArticles[] = "enable-sync-articles"; | 773 const char kEnableSyncArticles[] = "enable-sync-articles"; |
771 | 774 |
772 // Enables context menu for selecting groups of tabs. | 775 // Enables context menu for selecting groups of tabs. |
773 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 776 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
774 | 777 |
775 // Enables fanciful thumbnail processing. Used with NTP for | 778 // Enables fanciful thumbnail processing. Used with NTP for |
776 // instant-extended-api, where thumbnails are generally smaller. | 779 // instant-extended-api, where thumbnails are generally smaller. |
777 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 780 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
778 | 781 |
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1634 | 1637 |
1635 // ----------------------------------------------------------------------------- | 1638 // ----------------------------------------------------------------------------- |
1636 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1639 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1637 // | 1640 // |
1638 // You were going to just dump your switches here, weren't you? Instead, please | 1641 // You were going to just dump your switches here, weren't you? Instead, please |
1639 // put them in alphabetical order above, or in order inside the appropriate | 1642 // put them in alphabetical order above, or in order inside the appropriate |
1640 // ifdef at the bottom. The order should match the header. | 1643 // ifdef at the bottom. The order should match the header. |
1641 // ----------------------------------------------------------------------------- | 1644 // ----------------------------------------------------------------------------- |
1642 | 1645 |
1643 } // namespace switches | 1646 } // namespace switches |
OLD | NEW |