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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 const char kEnableSpdy4[] = "enable-spdy4"; | 651 const char kEnableSpdy4[] = "enable-spdy4"; |
652 | 652 |
653 // Enables auto correction for misspelled words. | 653 // Enables auto correction for misspelled words. |
654 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 654 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
655 | 655 |
656 // Enables participation in the field trial for user feedback to spelling | 656 // Enables participation in the field trial for user feedback to spelling |
657 // service. | 657 // service. |
658 const char kEnableSpellingFeedbackFieldTrial[] = | 658 const char kEnableSpellingFeedbackFieldTrial[] = |
659 "enable-spelling-feedback-field-trial"; | 659 "enable-spelling-feedback-field-trial"; |
660 | 660 |
661 // Enables the stacked tabstrip. | |
662 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | |
663 | |
664 // Enables an experimental hosted app experience. | 661 // Enables an experimental hosted app experience. |
665 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; | 662 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; |
666 | 663 |
667 // Enables the suggestions service. | 664 // Enables the suggestions service. |
668 const char kEnableSuggestionsService[] = "enable-suggestions-service"; | 665 const char kEnableSuggestionsService[] = "enable-suggestions-service"; |
669 | 666 |
670 // Enables synced notifications. | 667 // Enables synced notifications. |
671 const char kEnableSyncSyncedNotifications[] = | 668 const char kEnableSyncSyncedNotifications[] = |
672 "enable-sync-synced-notifications"; | 669 "enable-sync-synced-notifications"; |
673 | 670 |
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1454 | 1451 |
1455 // ----------------------------------------------------------------------------- | 1452 // ----------------------------------------------------------------------------- |
1456 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1453 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1457 // | 1454 // |
1458 // You were going to just dump your switches here, weren't you? Instead, please | 1455 // You were going to just dump your switches here, weren't you? Instead, please |
1459 // put them in alphabetical order above, or in order inside the appropriate | 1456 // put them in alphabetical order above, or in order inside the appropriate |
1460 // ifdef at the bottom. The order should match the header. | 1457 // ifdef at the bottom. The order should match the header. |
1461 // ----------------------------------------------------------------------------- | 1458 // ----------------------------------------------------------------------------- |
1462 | 1459 |
1463 } // namespace switches | 1460 } // namespace switches |
OLD | NEW |