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/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1482 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq"; | 1482 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq"; |
1483 | 1483 |
1484 // Integer which specifies the timeout value to be used for SendMessageTimeout | 1484 // Integer which specifies the timeout value to be used for SendMessageTimeout |
1485 // to detect a hung plugin window. | 1485 // to detect a hung plugin window. |
1486 const char kPluginMessageResponseTimeout[] = | 1486 const char kPluginMessageResponseTimeout[] = |
1487 "browser.plugin_message_response_timeout"; | 1487 "browser.plugin_message_response_timeout"; |
1488 | 1488 |
1489 // String which represents the dictionary name for our spell-checker. | 1489 // String which represents the dictionary name for our spell-checker. |
1490 const char kSpellCheckDictionary[] = "spellcheck.dictionary"; | 1490 const char kSpellCheckDictionary[] = "spellcheck.dictionary"; |
1491 | 1491 |
| 1492 // String which represents the comma-delimited dictionary names for our |
| 1493 // spell-checker. |
| 1494 const char kSpellCheckDictionaries[] = "spellcheck.dictionaries"; |
| 1495 |
1492 // String which represents whether we use the spelling service. | 1496 // String which represents whether we use the spelling service. |
1493 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service"; | 1497 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service"; |
1494 | 1498 |
1495 // Dictionary of schemes used by the external protocol handler. | 1499 // Dictionary of schemes used by the external protocol handler. |
1496 // The value is true if the scheme must be ignored. | 1500 // The value is true if the scheme must be ignored. |
1497 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes"; | 1501 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes"; |
1498 | 1502 |
1499 // Keys used for MAC handling of SafeBrowsing requests. | 1503 // Keys used for MAC handling of SafeBrowsing requests. |
1500 const char kSafeBrowsingClientKey[] = "safe_browsing.client_key"; | 1504 const char kSafeBrowsingClientKey[] = "safe_browsing.client_key"; |
1501 const char kSafeBrowsingWrappedKey[] = "safe_browsing.wrapped_key"; | 1505 const char kSafeBrowsingWrappedKey[] = "safe_browsing.wrapped_key"; |
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2292 // (name and a list of clients that registered the whitelist). | 2296 // (name and a list of clients that registered the whitelist). |
2293 const char kRegisteredSupervisedUserWhitelists[] = | 2297 const char kRegisteredSupervisedUserWhitelists[] = |
2294 "supervised_users.whitelists"; | 2298 "supervised_users.whitelists"; |
2295 | 2299 |
2296 #if defined(ENABLE_EXTENSIONS) | 2300 #if defined(ENABLE_EXTENSIONS) |
2297 // Policy that indicates how to handle animated images. | 2301 // Policy that indicates how to handle animated images. |
2298 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2302 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2299 #endif | 2303 #endif |
2300 | 2304 |
2301 } // namespace prefs | 2305 } // namespace prefs |
OLD | NEW |