diff options
author | rlp@chromium.org <rlp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 09:45:26 +0000 |
---|---|---|
committer | rlp@chromium.org <rlp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 09:45:26 +0000 |
commit | 139a0b71fdee4aba9949f5e49e0c01698d36e853 (patch) | |
tree | 8051bd598f229536d076bb0a1def0709549c8cbe /chrome/browser/spellchecker/spellcheck_factory.cc | |
parent | a5c6481d49c8ace0e2b6ea47f5b6f5387765b402 (diff) | |
download | chromium_src-139a0b71fdee4aba9949f5e49e0c01698d36e853.zip chromium_src-139a0b71fdee4aba9949f5e49e0c01698d36e853.tar.gz chromium_src-139a0b71fdee4aba9949f5e49e0c01698d36e853.tar.bz2 |
[Spellcheck] Add context menu entry for controlling spelling autocorrect.
BUG=12804
Review URL: https://chromiumcodereview.appspot.com/11577011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173702 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/spellchecker/spellcheck_factory.cc')
-rw-r--r-- | chrome/browser/spellchecker/spellcheck_factory.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/spellchecker/spellcheck_factory.cc b/chrome/browser/spellchecker/spellcheck_factory.cc index ddac858..fd1f733 100644 --- a/chrome/browser/spellchecker/spellcheck_factory.cc +++ b/chrome/browser/spellchecker/spellcheck_factory.cc @@ -60,8 +60,8 @@ void SpellcheckServiceFactory::RegisterUserPrefs(PrefService* user_prefs) { true, PrefService::SYNCABLE_PREF); user_prefs->RegisterBooleanPref(prefs::kEnableAutoSpellCorrect, - true, - PrefService::UNSYNCABLE_PREF); + false, + PrefService::SYNCABLE_PREF); } bool SpellcheckServiceFactory::ServiceRedirectedInIncognito() const { |