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