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 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
982 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; | 982 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; |
983 | 983 |
984 // Speculative resource prefetching will only learn about resources that need to | 984 // Speculative resource prefetching will only learn about resources that need to |
985 // be prefetched but will not prefetch them. | 985 // be prefetched but will not prefetch them. |
986 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; | 986 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; |
987 | 987 |
988 // Speculative resource prefetching is enabled. | 988 // Speculative resource prefetching is enabled. |
989 const char kSpeculativeResourcePrefetchingEnabled[] = "enabled"; | 989 const char kSpeculativeResourcePrefetchingEnabled[] = "enabled"; |
990 | 990 |
991 #if defined(ENABLE_SPELLCHECK) | 991 #if defined(ENABLE_SPELLCHECK) |
| 992 // Enables the multilingual spellchecker. |
| 993 const char kEnableMultilingualSpellChecker[] = |
| 994 "enable-multilingual-spellchecker"; |
| 995 |
992 // Enables auto correction for misspelled words. | 996 // Enables auto correction for misspelled words. |
993 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 997 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
994 | 998 |
995 // Enables participation in the field trial for user feedback to spelling | 999 // Enables participation in the field trial for user feedback to spelling |
996 // service. | 1000 // service. |
997 const char kEnableSpellingFeedbackFieldTrial[] = | 1001 const char kEnableSpellingFeedbackFieldTrial[] = |
998 "enable-spelling-feedback-field-trial"; | 1002 "enable-spelling-feedback-field-trial"; |
999 | 1003 |
1000 // Specifies the URL where spelling service feedback data will be sent instead | 1004 // Specifies the URL where spelling service feedback data will be sent instead |
1001 // of the default URL. This switch is for temporary testing only. | 1005 // of the default URL. This switch is for temporary testing only. |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1360 | 1364 |
1361 // ----------------------------------------------------------------------------- | 1365 // ----------------------------------------------------------------------------- |
1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1366 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1363 // | 1367 // |
1364 // You were going to just dump your switches here, weren't you? Instead, please | 1368 // You were going to just dump your switches here, weren't you? Instead, please |
1365 // put them in alphabetical order above, or in order inside the appropriate | 1369 // put them in alphabetical order above, or in order inside the appropriate |
1366 // ifdef at the bottom. The order should match the header. | 1370 // ifdef at the bottom. The order should match the header. |
1367 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
1368 | 1372 |
1369 } // namespace switches | 1373 } // namespace switches |
OLD | NEW |