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