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 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1069 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; | 1069 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; |
1070 | 1070 |
1071 // Speculative resource prefetching will only learn about resources that need to | 1071 // Speculative resource prefetching will only learn about resources that need to |
1072 // be prefetched but will not prefetch them. | 1072 // be prefetched but will not prefetch them. |
1073 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; | 1073 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; |
1074 | 1074 |
1075 // Speculative resource prefetching is enabled. | 1075 // Speculative resource prefetching is enabled. |
1076 const char kSpeculativeResourcePrefetchingEnabled[] = "enabled"; | 1076 const char kSpeculativeResourcePrefetchingEnabled[] = "enabled"; |
1077 | 1077 |
1078 #if defined(ENABLE_SPELLCHECK) | 1078 #if defined(ENABLE_SPELLCHECK) |
| 1079 // Enables the multilingual spellchecker. |
| 1080 const char kEnableMultilingualSpellChecker[] = |
| 1081 "enable-multilingual-spellchecker"; |
| 1082 |
1079 // Enables auto correction for misspelled words. | 1083 // Enables auto correction for misspelled words. |
1080 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 1084 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
1081 #endif | 1085 #endif |
1082 | 1086 |
1083 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or | 1087 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or |
1084 // "tls1.2"). | 1088 // "tls1.2"). |
1085 const char kSSLVersionMax[] = "ssl-version-max"; | 1089 const char kSSLVersionMax[] = "ssl-version-max"; |
1086 | 1090 |
1087 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or | 1091 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or |
1088 // "tls1.2"). | 1092 // "tls1.2"). |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1374 | 1378 |
1375 // ----------------------------------------------------------------------------- | 1379 // ----------------------------------------------------------------------------- |
1376 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1380 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1377 // | 1381 // |
1378 // You were going to just dump your switches here, weren't you? Instead, please | 1382 // You were going to just dump your switches here, weren't you? Instead, please |
1379 // put them in alphabetical order above, or in order inside the appropriate | 1383 // put them in alphabetical order above, or in order inside the appropriate |
1380 // ifdef at the bottom. The order should match the header. | 1384 // ifdef at the bottom. The order should match the header. |
1381 // ----------------------------------------------------------------------------- | 1385 // ----------------------------------------------------------------------------- |
1382 | 1386 |
1383 } // namespace switches | 1387 } // namespace switches |
OLD | NEW |