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

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: Addressed comments, added browsertest, fixed failures. 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 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after
1462 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq"; 1462 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq";
1463 1463
1464 // Integer which specifies the timeout value to be used for SendMessageTimeout 1464 // Integer which specifies the timeout value to be used for SendMessageTimeout
1465 // to detect a hung plugin window. 1465 // to detect a hung plugin window.
1466 const char kPluginMessageResponseTimeout[] = 1466 const char kPluginMessageResponseTimeout[] =
1467 "browser.plugin_message_response_timeout"; 1467 "browser.plugin_message_response_timeout";
1468 1468
1469 // String which represents the dictionary name for our spell-checker. 1469 // String which represents the dictionary name for our spell-checker.
1470 const char kSpellCheckDictionary[] = "spellcheck.dictionary"; 1470 const char kSpellCheckDictionary[] = "spellcheck.dictionary";
1471 1471
1472 // String which represents the comma-delimited dictionary names for our
1473 // spell-checker.
1474 const char kSpellCheckDictionaries[] = "spellcheck.dictionaries";
1475
1472 // String which represents whether we use the spelling service. 1476 // String which represents whether we use the spelling service.
1473 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service"; 1477 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service";
1474 1478
1475 // Dictionary of schemes used by the external protocol handler. 1479 // Dictionary of schemes used by the external protocol handler.
1476 // The value is true if the scheme must be ignored. 1480 // The value is true if the scheme must be ignored.
1477 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes"; 1481 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes";
1478 1482
1479 // Integer that specifies the index of the tab the user was on when they 1483 // Integer that specifies the index of the tab the user was on when they
1480 // last visited the options window. 1484 // last visited the options window.
1481 const char kOptionsWindowLastTabIndex[] = "options_window.last_tab_index"; 1485 const char kOptionsWindowLastTabIndex[] = "options_window.last_tab_index";
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
2275 "supervised_users.whitelists"; 2279 "supervised_users.whitelists";
2276 2280
2277 #if defined(ENABLE_EXTENSIONS) 2281 #if defined(ENABLE_EXTENSIONS)
2278 // Policy that indicates how to handle animated images. 2282 // Policy that indicates how to handle animated images.
2279 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2283 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2280 #endif 2284 #endif
2281 2285
2282 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2286 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2283 2287
2284 } // namespace prefs 2288 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698