| 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 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1476 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq"; | 1476 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq"; |
| 1477 | 1477 |
| 1478 // Integer which specifies the timeout value to be used for SendMessageTimeout | 1478 // Integer which specifies the timeout value to be used for SendMessageTimeout |
| 1479 // to detect a hung plugin window. | 1479 // to detect a hung plugin window. |
| 1480 const char kPluginMessageResponseTimeout[] = | 1480 const char kPluginMessageResponseTimeout[] = |
| 1481 "browser.plugin_message_response_timeout"; | 1481 "browser.plugin_message_response_timeout"; |
| 1482 | 1482 |
| 1483 // String which represents the dictionary name for our spell-checker. | 1483 // String which represents the dictionary name for our spell-checker. |
| 1484 const char kSpellCheckDictionary[] = "spellcheck.dictionary"; | 1484 const char kSpellCheckDictionary[] = "spellcheck.dictionary"; |
| 1485 | 1485 |
| 1486 // String which represents the comma-delimited dictionary names for our |
| 1487 // spell-checker. |
| 1488 const char kSpellCheckDictionaries[] = "spellcheck.dictionaries"; |
| 1489 |
| 1486 // String which represents whether we use the spelling service. | 1490 // String which represents whether we use the spelling service. |
| 1487 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service"; | 1491 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service"; |
| 1488 | 1492 |
| 1489 // Dictionary of schemes used by the external protocol handler. | 1493 // Dictionary of schemes used by the external protocol handler. |
| 1490 // The value is true if the scheme must be ignored. | 1494 // The value is true if the scheme must be ignored. |
| 1491 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes"; | 1495 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes"; |
| 1492 | 1496 |
| 1493 // Keys used for MAC handling of SafeBrowsing requests. | 1497 // Keys used for MAC handling of SafeBrowsing requests. |
| 1494 const char kSafeBrowsingClientKey[] = "safe_browsing.client_key"; | 1498 const char kSafeBrowsingClientKey[] = "safe_browsing.client_key"; |
| 1495 const char kSafeBrowsingWrappedKey[] = "safe_browsing.wrapped_key"; | 1499 const char kSafeBrowsingWrappedKey[] = "safe_browsing.wrapped_key"; |
| (...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2297 // (name and a list of clients that registered the whitelist). | 2301 // (name and a list of clients that registered the whitelist). |
| 2298 const char kRegisteredSupervisedUserWhitelists[] = | 2302 const char kRegisteredSupervisedUserWhitelists[] = |
| 2299 "supervised_users.whitelists"; | 2303 "supervised_users.whitelists"; |
| 2300 | 2304 |
| 2301 #if defined(ENABLE_EXTENSIONS) | 2305 #if defined(ENABLE_EXTENSIONS) |
| 2302 // Policy that indicates how to handle animated images. | 2306 // Policy that indicates how to handle animated images. |
| 2303 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2307 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2304 #endif | 2308 #endif |
| 2305 | 2309 |
| 2306 } // namespace prefs | 2310 } // namespace prefs |
| OLD | NEW |