| 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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 // Disables the "search button in omnibox" experiment. | 437 // Disables the "search button in omnibox" experiment. |
| 438 const char kDisableSearchButtonInOmnibox[] = | 438 const char kDisableSearchButtonInOmnibox[] = |
| 439 "disable-search-button-in-omnibox"; | 439 "disable-search-button-in-omnibox"; |
| 440 | 440 |
| 441 // Disable SPDY/3.1. This is a temporary testing flag. | 441 // Disable SPDY/3.1. This is a temporary testing flag. |
| 442 const char kDisableSpdy31[] = "disable-spdy31"; | 442 const char kDisableSpdy31[] = "disable-spdy31"; |
| 443 | 443 |
| 444 // Disables syncing browser data to a Google Account. | 444 // Disables syncing browser data to a Google Account. |
| 445 const char kDisableSync[] = "disable-sync"; | 445 const char kDisableSync[] = "disable-sync"; |
| 446 | 446 |
| 447 // Disables syncing of the app list independent of extensions. |
| 448 const char kDisableSyncAppList[] = "disable-sync-app-list"; |
| 449 |
| 447 // Disables syncing of app settings. | 450 // Disables syncing of app settings. |
| 448 const char kDisableSyncAppSettings[] = "disable-sync-app-settings"; | 451 const char kDisableSyncAppSettings[] = "disable-sync-app-settings"; |
| 449 | 452 |
| 450 // Disables syncing of apps. | 453 // Disables syncing of apps. |
| 451 const char kDisableSyncApps[] = "disable-sync-apps"; | 454 const char kDisableSyncApps[] = "disable-sync-apps"; |
| 452 | 455 |
| 453 // Disables syncing of autofill. | 456 // Disables syncing of autofill. |
| 454 const char kDisableSyncAutofill[] = "disable-sync-autofill"; | 457 const char kDisableSyncAutofill[] = "disable-sync-autofill"; |
| 455 | 458 |
| 456 // Disables syncing of autofill Profile. | 459 // Disables syncing of autofill Profile. |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 // Enables experimental suggestions pane in New Tab page. | 774 // Enables experimental suggestions pane in New Tab page. |
| 772 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 775 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
| 773 | 776 |
| 774 // Enables synced notifications. | 777 // Enables synced notifications. |
| 775 const char kEnableSyncSyncedNotifications[] = | 778 const char kEnableSyncSyncedNotifications[] = |
| 776 "enable-sync-synced-notifications"; | 779 "enable-sync-synced-notifications"; |
| 777 | 780 |
| 778 // Disables sync/API based session sync implementation (back to legacy). | 781 // Disables sync/API based session sync implementation (back to legacy). |
| 779 const char kDisableSyncSessionsV2[] = "disable-sync-sessions-v2"; | 782 const char kDisableSyncSessionsV2[] = "disable-sync-sessions-v2"; |
| 780 | 783 |
| 781 // Enables syncing of the app list. | |
| 782 const char kEnableSyncAppList[] = "enable-sync-app-list"; | |
| 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. | 787 // Enables context menu for selecting groups of tabs. |
| 788 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 788 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
| 789 | 789 |
| 790 // Enables fanciful thumbnail processing. Used with NTP for | 790 // Enables fanciful thumbnail processing. Used with NTP for |
| 791 // instant-extended-api, where thumbnails are generally smaller. | 791 // instant-extended-api, where thumbnails are generally smaller. |
| 792 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 792 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
| 793 | 793 |
| (...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1649 | 1649 |
| 1650 // ----------------------------------------------------------------------------- | 1650 // ----------------------------------------------------------------------------- |
| 1651 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1651 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1652 // | 1652 // |
| 1653 // You were going to just dump your switches here, weren't you? Instead, please | 1653 // 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 | 1654 // put them in alphabetical order above, or in order inside the appropriate |
| 1655 // ifdef at the bottom. The order should match the header. | 1655 // ifdef at the bottom. The order should match the header. |
| 1656 // ----------------------------------------------------------------------------- | 1656 // ----------------------------------------------------------------------------- |
| 1657 | 1657 |
| 1658 } // namespace switches | 1658 } // namespace switches |
| OLD | NEW |