| 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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 | 631 |
| 632 // Enables auto correction for misspelled words. | 632 // Enables auto correction for misspelled words. |
| 633 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 633 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
| 634 | 634 |
| 635 // Enables the stacked tabstrip. | 635 // Enables the stacked tabstrip. |
| 636 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 636 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
| 637 | 637 |
| 638 // Enables experimental suggestions pane in New Tab page. | 638 // Enables experimental suggestions pane in New Tab page. |
| 639 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 639 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
| 640 | 640 |
| 641 // Enables synced notifications. |
| 642 const char kEnableSyncSyncedNotifications[] = |
| 643 "enable-sync-synced-notifications"; |
| 644 |
| 641 // Enables context menu for selecting groups of tabs. | 645 // Enables context menu for selecting groups of tabs. |
| 642 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 646 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
| 643 | 647 |
| 644 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 648 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
| 645 const char kEnableUserAlternateProtocolPorts[] = | 649 const char kEnableUserAlternateProtocolPorts[] = |
| 646 "enable-user-controlled-alternate-protocol-ports"; | 650 "enable-user-controlled-alternate-protocol-ports"; |
| 647 | 651 |
| 648 // Spawns threads to watch for excessive delays in specified message loops. | 652 // Spawns threads to watch for excessive delays in specified message loops. |
| 649 // User should set breakpoints on Alarm() to examine problematic thread. | 653 // User should set breakpoints on Alarm() to examine problematic thread. |
| 650 // | 654 // |
| (...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1655 | 1659 |
| 1656 // ----------------------------------------------------------------------------- | 1660 // ----------------------------------------------------------------------------- |
| 1657 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1661 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1658 // | 1662 // |
| 1659 // You were going to just dump your switches here, weren't you? Instead, please | 1663 // 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 | 1664 // put them in alphabetical order above, or in order inside the appropriate |
| 1661 // ifdef at the bottom. The order should match the header. | 1665 // ifdef at the bottom. The order should match the header. |
| 1662 // ----------------------------------------------------------------------------- | 1666 // ----------------------------------------------------------------------------- |
| 1663 | 1667 |
| 1664 } // namespace switches | 1668 } // namespace switches |
| OLD | NEW |