| 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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 // Disables the "search button in omnibox" experiment. | 433 // Disables the "search button in omnibox" experiment. |
| 434 const char kDisableSearchButtonInOmnibox[] = | 434 const char kDisableSearchButtonInOmnibox[] = |
| 435 "disable-search-button-in-omnibox"; | 435 "disable-search-button-in-omnibox"; |
| 436 | 436 |
| 437 // Disable SPDY/3.1. This is a temporary testing flag. | 437 // Disable SPDY/3.1. This is a temporary testing flag. |
| 438 const char kDisableSpdy31[] = "disable-spdy31"; | 438 const char kDisableSpdy31[] = "disable-spdy31"; |
| 439 | 439 |
| 440 // Disables syncing browser data to a Google Account. | 440 // Disables syncing browser data to a Google Account. |
| 441 const char kDisableSync[] = "disable-sync"; | 441 const char kDisableSync[] = "disable-sync"; |
| 442 | 442 |
| 443 // Disables syncing of the app list independent of extensions. |
| 444 const char kDisableSyncAppList[] = "disable-sync-app-list"; |
| 445 |
| 443 // Disables syncing of app settings. | 446 // Disables syncing of app settings. |
| 444 const char kDisableSyncAppSettings[] = "disable-sync-app-settings"; | 447 const char kDisableSyncAppSettings[] = "disable-sync-app-settings"; |
| 445 | 448 |
| 446 // Disables syncing of apps. | 449 // Disables syncing of apps. |
| 447 const char kDisableSyncApps[] = "disable-sync-apps"; | 450 const char kDisableSyncApps[] = "disable-sync-apps"; |
| 448 | 451 |
| 449 // Disables syncing of autofill. | 452 // Disables syncing of autofill. |
| 450 const char kDisableSyncAutofill[] = "disable-sync-autofill"; | 453 const char kDisableSyncAutofill[] = "disable-sync-autofill"; |
| 451 | 454 |
| 452 // Disables syncing of autofill Profile. | 455 // Disables syncing of autofill Profile. |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 764 // Enables experimental suggestions pane in New Tab page. | 767 // Enables experimental suggestions pane in New Tab page. |
| 765 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 768 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
| 766 | 769 |
| 767 // Enables synced notifications. | 770 // Enables synced notifications. |
| 768 const char kEnableSyncSyncedNotifications[] = | 771 const char kEnableSyncSyncedNotifications[] = |
| 769 "enable-sync-synced-notifications"; | 772 "enable-sync-synced-notifications"; |
| 770 | 773 |
| 771 // Disables sync/API based session sync implementation (back to legacy). | 774 // Disables sync/API based session sync implementation (back to legacy). |
| 772 const char kDisableSyncSessionsV2[] = "disable-sync-sessions-v2"; | 775 const char kDisableSyncSessionsV2[] = "disable-sync-sessions-v2"; |
| 773 | 776 |
| 774 // Enables syncing of the app list. | |
| 775 const char kEnableSyncAppList[] = "enable-sync-app-list"; | |
| 776 | |
| 777 // Enables synced articles. | 777 // Enables synced articles. |
| 778 const char kEnableSyncArticles[] = "enable-sync-articles"; | 778 const char kEnableSyncArticles[] = "enable-sync-articles"; |
| 779 | 779 |
| 780 // Enables fanciful thumbnail processing. Used with NTP for | 780 // Enables fanciful thumbnail processing. Used with NTP for |
| 781 // instant-extended-api, where thumbnails are generally smaller. | 781 // instant-extended-api, where thumbnails are generally smaller. |
| 782 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 782 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
| 783 | 783 |
| 784 // Enables Translate experimental new UX which replaces the infobar. | 784 // Enables Translate experimental new UX which replaces the infobar. |
| 785 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; | 785 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; |
| 786 | 786 |
| (...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1640 | 1640 |
| 1641 // ----------------------------------------------------------------------------- | 1641 // ----------------------------------------------------------------------------- |
| 1642 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1642 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1643 // | 1643 // |
| 1644 // You were going to just dump your switches here, weren't you? Instead, please | 1644 // You were going to just dump your switches here, weren't you? Instead, please |
| 1645 // put them in alphabetical order above, or in order inside the appropriate | 1645 // put them in alphabetical order above, or in order inside the appropriate |
| 1646 // ifdef at the bottom. The order should match the header. | 1646 // ifdef at the bottom. The order should match the header. |
| 1647 // ----------------------------------------------------------------------------- | 1647 // ----------------------------------------------------------------------------- |
| 1648 | 1648 |
| 1649 } // namespace switches | 1649 } // namespace switches |
| OLD | NEW |