diff options
author | sidchat@chromium.org <sidchat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-05 22:01:26 +0000 |
---|---|---|
committer | sidchat@chromium.org <sidchat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-05 22:01:26 +0000 |
commit | b86c8c142f6b36564b05ebceebaa005761c513ca (patch) | |
tree | b7b65be71114605ac1c927bdc14ae8e6f58e7aaf /chrome/common/chrome_switches.cc | |
parent | 4675fee830843ebb5caf7e5a8e0bbbdf436241f3 (diff) | |
download | chromium_src-b86c8c142f6b36564b05ebceebaa005761c513ca.zip chromium_src-b86c8c142f6b36564b05ebceebaa005761c513ca.tar.gz chromium_src-b86c8c142f6b36564b05ebceebaa005761c513ca.tar.bz2 |
Change flag "auto-spell-correct" to "experimental-spellchecker-features". I will be making a series of new features in spellchecking, and will keep all of them under this flag till they become mature enough for default use.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/260006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 913d895..d38ee2e 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -465,8 +465,15 @@ const wchar_t kWebWorkerShareProcesses[] = L"web-worker-share-processes"; // Enables the bookmark menu. const wchar_t kBookmarkMenu[] = L"bookmark-menu"; -// Enables auto spell correction. -const wchar_t kAutoSpellCorrect[] = L"auto-spell-correct"; +// Enables experimental features for Spellchecker. Right now, the first +// experimental feature is auto spell correct, which corrects words which are +// misppelled by typing the word with two consecutive letters swapped. The +// features that will be added next are: +// 1 - Allow multiple spellcheckers to work simultaneously. +// 2 - Allow automatic detection of spell check language. +// TODO(sidchat): Implement the above fetaures to work under this flag. +const wchar_t kExperimentalSpellcheckerFeatures[] = + L"experimental-spellchecker-features"; // Enables StatsTable, logging statistics to a global named shared memory table. const wchar_t kEnableStatsTable[] = L"enable-stats-table"; |