Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(632)

Side by Side Diff: chrome/common/pref_names.cc

Issue 654653002: Enables the user to select multiple languages for spellchecking (UI) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reset unneccessary changes. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1461 matching lines...) Expand 10 before | Expand all | Expand 10 after
1472 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq"; 1472 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq";
1473 1473
1474 // Integer which specifies the timeout value to be used for SendMessageTimeout 1474 // Integer which specifies the timeout value to be used for SendMessageTimeout
1475 // to detect a hung plugin window. 1475 // to detect a hung plugin window.
1476 const char kPluginMessageResponseTimeout[] = 1476 const char kPluginMessageResponseTimeout[] =
1477 "browser.plugin_message_response_timeout"; 1477 "browser.plugin_message_response_timeout";
1478 1478
1479 // String which represents the dictionary name for our spell-checker. 1479 // String which represents the dictionary name for our spell-checker.
1480 const char kSpellCheckDictionary[] = "spellcheck.dictionary"; 1480 const char kSpellCheckDictionary[] = "spellcheck.dictionary";
1481 1481
1482 // String which represents the comma-delimited dictionary names for our
1483 // spell-checker.
1484 const char kSpellCheckDictionaries[] = "spellcheck.dictionaries";
1485
1482 // String which represents whether we use the spelling service. 1486 // String which represents whether we use the spelling service.
1483 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service"; 1487 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service";
1484 1488
1485 // Dictionary of schemes used by the external protocol handler. 1489 // Dictionary of schemes used by the external protocol handler.
1486 // The value is true if the scheme must be ignored. 1490 // The value is true if the scheme must be ignored.
1487 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes"; 1491 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes";
1488 1492
1489 // Keys used for MAC handling of SafeBrowsing requests. 1493 // Keys used for MAC handling of SafeBrowsing requests.
1490 const char kSafeBrowsingClientKey[] = "safe_browsing.client_key"; 1494 const char kSafeBrowsingClientKey[] = "safe_browsing.client_key";
1491 const char kSafeBrowsingWrappedKey[] = "safe_browsing.wrapped_key"; 1495 const char kSafeBrowsingWrappedKey[] = "safe_browsing.wrapped_key";
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
2285 // (name and a list of clients that registered the whitelist). 2289 // (name and a list of clients that registered the whitelist).
2286 const char kRegisteredSupervisedUserWhitelists[] = 2290 const char kRegisteredSupervisedUserWhitelists[] =
2287 "supervised_users.whitelists"; 2291 "supervised_users.whitelists";
2288 2292
2289 #if defined(ENABLE_EXTENSIONS) 2293 #if defined(ENABLE_EXTENSIONS)
2290 // Policy that indicates how to handle animated images. 2294 // Policy that indicates how to handle animated images.
2291 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2295 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2292 #endif 2296 #endif
2293 2297
2294 } // namespace prefs 2298 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698