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 1089 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1100 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; | 1100 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; |
1101 | 1101 |
1102 // Speculative resource prefetching will only learn about resources that need to | 1102 // Speculative resource prefetching will only learn about resources that need to |
1103 // be prefetched but will not prefetch them. | 1103 // be prefetched but will not prefetch them. |
1104 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; | 1104 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; |
1105 | 1105 |
1106 // Speculative resource prefetching is enabled. | 1106 // Speculative resource prefetching is enabled. |
1107 const char kSpeculativeResourcePrefetchingEnabled[] = "enabled"; | 1107 const char kSpeculativeResourcePrefetchingEnabled[] = "enabled"; |
1108 | 1108 |
1109 #if defined(ENABLE_SPELLCHECK) | 1109 #if defined(ENABLE_SPELLCHECK) |
| 1110 // Enables the multilingual spellchecker |
| 1111 const char kEnableMultilingualSpellChecker[] = |
| 1112 "enable-multilingual-spellchecker"; |
| 1113 |
1110 // Enables auto correction for misspelled words. | 1114 // Enables auto correction for misspelled words. |
1111 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 1115 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
1112 #endif | 1116 #endif |
1113 | 1117 |
1114 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or | 1118 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or |
1115 // "tls1.2"). | 1119 // "tls1.2"). |
1116 const char kSSLVersionMax[] = "ssl-version-max"; | 1120 const char kSSLVersionMax[] = "ssl-version-max"; |
1117 | 1121 |
1118 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or | 1122 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or |
1119 // "tls1.2"). | 1123 // "tls1.2"). |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1405 | 1409 |
1406 // ----------------------------------------------------------------------------- | 1410 // ----------------------------------------------------------------------------- |
1407 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1411 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1408 // | 1412 // |
1409 // You were going to just dump your switches here, weren't you? Instead, please | 1413 // You were going to just dump your switches here, weren't you? Instead, please |
1410 // put them in alphabetical order above, or in order inside the appropriate | 1414 // put them in alphabetical order above, or in order inside the appropriate |
1411 // ifdef at the bottom. The order should match the header. | 1415 // ifdef at the bottom. The order should match the header. |
1412 // ----------------------------------------------------------------------------- | 1416 // ----------------------------------------------------------------------------- |
1413 | 1417 |
1414 } // namespace switches | 1418 } // namespace switches |
OLD | NEW |