| 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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 | 369 |
| 370 // Disables syncing of autofill. | 370 // Disables syncing of autofill. |
| 371 const char kDisableSyncAutofill[] = "disable-sync-autofill"; | 371 const char kDisableSyncAutofill[] = "disable-sync-autofill"; |
| 372 | 372 |
| 373 // Disables syncing of autofill Profile. | 373 // Disables syncing of autofill Profile. |
| 374 const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile"; | 374 const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile"; |
| 375 | 375 |
| 376 // Disables syncing of bookmarks. | 376 // Disables syncing of bookmarks. |
| 377 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; | 377 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; |
| 378 | 378 |
| 379 // Disables syncing of dictionary. |
| 380 const char kDisableSyncDictionary[] = "disable-sync-dictionary"; |
| 381 |
| 379 // Disables syncing extension settings. | 382 // Disables syncing extension settings. |
| 380 const char kDisableSyncExtensionSettings[] = "disable-sync-extension-settings"; | 383 const char kDisableSyncExtensionSettings[] = "disable-sync-extension-settings"; |
| 381 | 384 |
| 382 // Disables syncing of extensions. | 385 // Disables syncing of extensions. |
| 383 const char kDisableSyncExtensions[] = "disable-sync-extensions"; | 386 const char kDisableSyncExtensions[] = "disable-sync-extensions"; |
| 384 | 387 |
| 385 // Disables syncing of history delete directives. | 388 // Disables syncing of history delete directives. |
| 386 const char kDisableSyncHistoryDeleteDirectives[] = | 389 const char kDisableSyncHistoryDeleteDirectives[] = |
| 387 "disable-sync-history-delete-directives"; | 390 "disable-sync-history-delete-directives"; |
| 388 | 391 |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 | 631 |
| 629 // Enables auto correction for misspelled words. | 632 // Enables auto correction for misspelled words. |
| 630 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 633 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
| 631 | 634 |
| 632 // Enables the stacked tabstrip. | 635 // Enables the stacked tabstrip. |
| 633 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 636 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
| 634 | 637 |
| 635 // Enables experimental suggestions pane in New Tab page. | 638 // Enables experimental suggestions pane in New Tab page. |
| 636 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 639 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
| 637 | 640 |
| 638 // Enables syncing of dictionary. | |
| 639 const char kEnableSyncDictionary[] = "enable-sync-dictionary"; | |
| 640 | |
| 641 // Enables context menu for selecting groups of tabs. | 641 // Enables context menu for selecting groups of tabs. |
| 642 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 642 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
| 643 | 643 |
| 644 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 644 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
| 645 const char kEnableUserAlternateProtocolPorts[] = | 645 const char kEnableUserAlternateProtocolPorts[] = |
| 646 "enable-user-controlled-alternate-protocol-ports"; | 646 "enable-user-controlled-alternate-protocol-ports"; |
| 647 | 647 |
| 648 // Spawns threads to watch for excessive delays in specified message loops. | 648 // Spawns threads to watch for excessive delays in specified message loops. |
| 649 // User should set breakpoints on Alarm() to examine problematic thread. | 649 // User should set breakpoints on Alarm() to examine problematic thread. |
| 650 // | 650 // |
| (...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1655 | 1655 |
| 1656 // ----------------------------------------------------------------------------- | 1656 // ----------------------------------------------------------------------------- |
| 1657 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1657 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1658 // | 1658 // |
| 1659 // You were going to just dump your switches here, weren't you? Instead, please | 1659 // You were going to just dump your switches here, weren't you? Instead, please |
| 1660 // put them in alphabetical order above, or in order inside the appropriate | 1660 // put them in alphabetical order above, or in order inside the appropriate |
| 1661 // ifdef at the bottom. The order should match the header. | 1661 // ifdef at the bottom. The order should match the header. |
| 1662 // ----------------------------------------------------------------------------- | 1662 // ----------------------------------------------------------------------------- |
| 1663 | 1663 |
| 1664 } // namespace switches | 1664 } // namespace switches |
| OLD | NEW |