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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 | 387 |
388 // Disables syncing browser passwords. | 388 // Disables syncing browser passwords. |
389 const char kDisableSyncPasswords[] = "disable-sync-passwords"; | 389 const char kDisableSyncPasswords[] = "disable-sync-passwords"; |
390 | 390 |
391 // Disables syncing of preferences. | 391 // Disables syncing of preferences. |
392 const char kDisableSyncPreferences[] = "disable-sync-preferences"; | 392 const char kDisableSyncPreferences[] = "disable-sync-preferences"; |
393 | 393 |
394 // Disable syncing custom search engines. | 394 // Disable syncing custom search engines. |
395 const char kDisableSyncSearchEngines[] = "disable-sync-search-engines"; | 395 const char kDisableSyncSearchEngines[] = "disable-sync-search-engines"; |
396 | 396 |
| 397 // Disables synced notifications. |
| 398 const char kDisableSyncSyncedNotifications[] = |
| 399 "disable-sync-synced-notifications"; |
| 400 |
397 // Disables syncing browser sessions. Will override kEnableSyncTabs. | 401 // Disables syncing browser sessions. Will override kEnableSyncTabs. |
398 const char kDisableSyncTabs[] = "disable-sync-tabs"; | 402 const char kDisableSyncTabs[] = "disable-sync-tabs"; |
399 | 403 |
400 // Disables syncing of themes. | 404 // Disables syncing of themes. |
401 const char kDisableSyncThemes[] = "disable-sync-themes"; | 405 const char kDisableSyncThemes[] = "disable-sync-themes"; |
402 | 406 |
403 // Disables syncing browser typed urls. | 407 // Disables syncing browser typed urls. |
404 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; | 408 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; |
405 | 409 |
406 // Allows disabling of translate from the command line to assist with automated | 410 // Allows disabling of translate from the command line to assist with automated |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 | 623 |
620 // Enables auto correction for misspelled words. | 624 // Enables auto correction for misspelled words. |
621 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 625 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
622 | 626 |
623 // Enables the stacked tabstrip. | 627 // Enables the stacked tabstrip. |
624 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 628 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
625 | 629 |
626 // Enables experimental suggestions pane in New Tab page. | 630 // Enables experimental suggestions pane in New Tab page. |
627 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 631 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
628 | 632 |
629 // Enables synced notifications. | |
630 const char kEnableSyncSyncedNotifications[] = | |
631 "enable-sync-synced-notifications"; | |
632 | |
633 // Enables synced favicons | 633 // Enables synced favicons |
634 const char kEnableSyncFavicons[] = "enable-sync-favicons"; | 634 const char kEnableSyncFavicons[] = "enable-sync-favicons"; |
635 | 635 |
636 // Enables context menu for selecting groups of tabs. | 636 // Enables context menu for selecting groups of tabs. |
637 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 637 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
638 | 638 |
639 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 639 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
640 const char kEnableUserAlternateProtocolPorts[] = | 640 const char kEnableUserAlternateProtocolPorts[] = |
641 "enable-user-controlled-alternate-protocol-ports"; | 641 "enable-user-controlled-alternate-protocol-ports"; |
642 | 642 |
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1671 | 1671 |
1672 // ----------------------------------------------------------------------------- | 1672 // ----------------------------------------------------------------------------- |
1673 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1673 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1674 // | 1674 // |
1675 // You were going to just dump your switches here, weren't you? Instead, please | 1675 // You were going to just dump your switches here, weren't you? Instead, please |
1676 // put them in alphabetical order above, or in order inside the appropriate | 1676 // put them in alphabetical order above, or in order inside the appropriate |
1677 // ifdef at the bottom. The order should match the header. | 1677 // ifdef at the bottom. The order should match the header. |
1678 // ----------------------------------------------------------------------------- | 1678 // ----------------------------------------------------------------------------- |
1679 | 1679 |
1680 } // namespace switches | 1680 } // namespace switches |
OLD | NEW |