| 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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 const char kEnableSpdy4[] = "enable-spdy4"; | 622 const char kEnableSpdy4[] = "enable-spdy4"; |
| 623 | 623 |
| 624 // Enables auto correction for misspelled words. | 624 // Enables auto correction for misspelled words. |
| 625 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 625 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
| 626 | 626 |
| 627 // Enables participation in the field trial for user feedback to spelling | 627 // Enables participation in the field trial for user feedback to spelling |
| 628 // service. | 628 // service. |
| 629 const char kEnableSpellingFeedbackFieldTrial[] = | 629 const char kEnableSpellingFeedbackFieldTrial[] = |
| 630 "enable-spelling-feedback-field-trial"; | 630 "enable-spelling-feedback-field-trial"; |
| 631 | 631 |
| 632 // Enables the stacked tabstrip. | |
| 633 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | |
| 634 | |
| 635 // Enables an experimental hosted app experience. | 632 // Enables an experimental hosted app experience. |
| 636 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; | 633 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; |
| 637 | 634 |
| 638 // Enables the suggestions service. | 635 // Enables the suggestions service. |
| 639 const char kEnableSuggestionsService[] = "enable-suggestions-service"; | 636 const char kEnableSuggestionsService[] = "enable-suggestions-service"; |
| 640 | 637 |
| 641 // Enables synced notifications. | 638 // Enables synced notifications. |
| 642 const char kEnableSyncSyncedNotifications[] = | 639 const char kEnableSyncSyncedNotifications[] = |
| 643 "enable-sync-synced-notifications"; | 640 "enable-sync-synced-notifications"; |
| 644 | 641 |
| (...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1410 | 1407 |
| 1411 // ----------------------------------------------------------------------------- | 1408 // ----------------------------------------------------------------------------- |
| 1412 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1409 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1413 // | 1410 // |
| 1414 // You were going to just dump your switches here, weren't you? Instead, please | 1411 // You were going to just dump your switches here, weren't you? Instead, please |
| 1415 // put them in alphabetical order above, or in order inside the appropriate | 1412 // put them in alphabetical order above, or in order inside the appropriate |
| 1416 // ifdef at the bottom. The order should match the header. | 1413 // ifdef at the bottom. The order should match the header. |
| 1417 // ----------------------------------------------------------------------------- | 1414 // ----------------------------------------------------------------------------- |
| 1418 | 1415 |
| 1419 } // namespace switches | 1416 } // namespace switches |
| OLD | NEW |