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

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

Issue 1156473007: Enables the user to select multiple languages for spellchecking (UI) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nits and rebased. Created 5 years, 6 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 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq"; 1451 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq";
1452 1452
1453 // Integer which specifies the timeout value to be used for SendMessageTimeout 1453 // Integer which specifies the timeout value to be used for SendMessageTimeout
1454 // to detect a hung plugin window. 1454 // to detect a hung plugin window.
1455 const char kPluginMessageResponseTimeout[] = 1455 const char kPluginMessageResponseTimeout[] =
1456 "browser.plugin_message_response_timeout"; 1456 "browser.plugin_message_response_timeout";
1457 1457
1458 // String which represents the dictionary name for our spell-checker. 1458 // String which represents the dictionary name for our spell-checker.
1459 const char kSpellCheckDictionary[] = "spellcheck.dictionary"; 1459 const char kSpellCheckDictionary[] = "spellcheck.dictionary";
1460 1460
1461 // String which represents the comma-delimited dictionary names for our
1462 // spell-checker.
1463 const char kSpellCheckDictionaries[] = "spellcheck.dictionaries";
1464
1461 // String which represents whether we use the spelling service. 1465 // String which represents whether we use the spelling service.
1462 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service"; 1466 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service";
1463 1467
1464 // Dictionary of schemes used by the external protocol handler. 1468 // Dictionary of schemes used by the external protocol handler.
1465 // The value is true if the scheme must be ignored. 1469 // The value is true if the scheme must be ignored.
1466 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes"; 1470 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes";
1467 1471
1468 // Integer that specifies the index of the tab the user was on when they 1472 // Integer that specifies the index of the tab the user was on when they
1469 // last visited the options window. 1473 // last visited the options window.
1470 const char kOptionsWindowLastTabIndex[] = "options_window.last_tab_index"; 1474 const char kOptionsWindowLastTabIndex[] = "options_window.last_tab_index";
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
2258 "supervised_users.whitelists"; 2262 "supervised_users.whitelists";
2259 2263
2260 #if defined(ENABLE_EXTENSIONS) 2264 #if defined(ENABLE_EXTENSIONS)
2261 // Policy that indicates how to handle animated images. 2265 // Policy that indicates how to handle animated images.
2262 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2266 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2263 #endif 2267 #endif
2264 2268
2265 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2269 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2266 2270
2267 } // namespace prefs 2271 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698