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