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

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

Issue 7713033: Integrate the Spelling service to Chrome. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after
1073 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq"; 1073 const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq";
1074 1074
1075 // Integer which specifies the timeout value to be used for SendMessageTimeout 1075 // Integer which specifies the timeout value to be used for SendMessageTimeout
1076 // to detect a hung plugin window. 1076 // to detect a hung plugin window.
1077 const char kPluginMessageResponseTimeout[] = 1077 const char kPluginMessageResponseTimeout[] =
1078 "browser.plugin_message_response_timeout"; 1078 "browser.plugin_message_response_timeout";
1079 1079
1080 // String which represents the dictionary name for our spell-checker. 1080 // String which represents the dictionary name for our spell-checker.
1081 const char kSpellCheckDictionary[] = "spellcheck.dictionary"; 1081 const char kSpellCheckDictionary[] = "spellcheck.dictionary";
1082 1082
1083 // String which represents whether we use the spelling service.
1084 const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service";
1085
1083 // Dictionary of schemes used by the external protocol handler. 1086 // Dictionary of schemes used by the external protocol handler.
1084 // The value is true if the scheme must be ignored. 1087 // The value is true if the scheme must be ignored.
1085 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes"; 1088 const char kExcludedSchemes[] = "protocol_handler.excluded_schemes";
1086 1089
1087 // Keys used for MAC handling of SafeBrowsing requests. 1090 // Keys used for MAC handling of SafeBrowsing requests.
1088 const char kSafeBrowsingClientKey[] = "safe_browsing.client_key"; 1091 const char kSafeBrowsingClientKey[] = "safe_browsing.client_key";
1089 const char kSafeBrowsingWrappedKey[] = "safe_browsing.wrapped_key"; 1092 const char kSafeBrowsingWrappedKey[] = "safe_browsing.wrapped_key";
1090 1093
1091 // Integer that specifies the index of the tab the user was on when they 1094 // Integer that specifies the index of the tab the user was on when they
1092 // last visited the options window. 1095 // last visited the options window.
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
1574 // specified. 1577 // specified.
1575 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; 1578 const char kCustomHandlersEnabled[] = "custom_handlers.enabled";
1576 1579
1577 // Integers that specify the policy refresh rate for device- and user-policy in 1580 // Integers that specify the policy refresh rate for device- and user-policy in
1578 // milliseconds. Not all values are meaningful, so it is clamped to a sane range 1581 // milliseconds. Not all values are meaningful, so it is clamped to a sane range
1579 // by the cloud policy subsystem. 1582 // by the cloud policy subsystem.
1580 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; 1583 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate";
1581 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; 1584 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate";
1582 1585
1583 } // namespace prefs 1586 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698