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