| 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 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 | 643 |
| 644 // Enables auto correction for misspelled words. | 644 // Enables auto correction for misspelled words. |
| 645 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 645 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
| 646 | 646 |
| 647 // Enables the stacked tabstrip. | 647 // Enables the stacked tabstrip. |
| 648 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 648 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
| 649 | 649 |
| 650 // Enables experimental suggestions pane in New Tab page. | 650 // Enables experimental suggestions pane in New Tab page. |
| 651 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 651 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
| 652 | 652 |
| 653 // Enables syncing of dictionary. |
| 654 const char kEnableSyncDictionary[] = "enable-sync-dictionary"; |
| 655 |
| 653 // Enables context menu for selecting groups of tabs. | 656 // Enables context menu for selecting groups of tabs. |
| 654 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 657 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
| 655 | 658 |
| 656 // Spawns threads to watch for excessive delays in specified message loops. | 659 // Spawns threads to watch for excessive delays in specified message loops. |
| 657 // User should set breakpoints on Alarm() to examine problematic thread. | 660 // User should set breakpoints on Alarm() to examine problematic thread. |
| 658 // | 661 // |
| 659 // Usage: -enable-watchdog=[ui][io] | 662 // Usage: -enable-watchdog=[ui][io] |
| 660 // | 663 // |
| 661 // Order of the listed sub-arguments does not matter. | 664 // Order of the listed sub-arguments does not matter. |
| 662 const char kEnableWatchdog[] = "enable-watchdog"; | 665 const char kEnableWatchdog[] = "enable-watchdog"; |
| (...skipping 941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1604 | 1607 |
| 1605 // ----------------------------------------------------------------------------- | 1608 // ----------------------------------------------------------------------------- |
| 1606 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1609 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1607 // | 1610 // |
| 1608 // You were going to just dump your switches here, weren't you? Instead, please | 1611 // You were going to just dump your switches here, weren't you? Instead, please |
| 1609 // put them in alphabetical order above, or in order inside the appropriate | 1612 // put them in alphabetical order above, or in order inside the appropriate |
| 1610 // ifdef at the bottom. The order should match the header. | 1613 // ifdef at the bottom. The order should match the header. |
| 1611 // ----------------------------------------------------------------------------- | 1614 // ----------------------------------------------------------------------------- |
| 1612 | 1615 |
| 1613 } // namespace switches | 1616 } // namespace switches |
| OLD | NEW |