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

Unified Diff: chrome/browser/spellchecker/spellcheck_factory.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 previous comments. 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/spellchecker/spellcheck_factory.cc
diff --git a/chrome/browser/spellchecker/spellcheck_factory.cc b/chrome/browser/spellchecker/spellcheck_factory.cc
index edbed4055410f4b5c9027f3023dea245aa2fd68d..ed530e7ff9375d007d08ac6e930a59d45b3f1474 100644
--- a/chrome/browser/spellchecker/spellcheck_factory.cc
+++ b/chrome/browser/spellchecker/spellcheck_factory.cc
@@ -4,10 +4,13 @@
#include "chrome/browser/spellchecker/spellcheck_factory.h"
+#include "base/command_line.h"
please use gerrit instead 2015/06/06 01:42:12 Unused include. There's an OK-ish tool to detect
Julius 2015/06/12 20:10:14 Done.
#include "base/prefs/pref_service.h"
#include "chrome/browser/profiles/incognito_helpers.h"
#include "chrome/browser/spellchecker/spellcheck_service.h"
+#include "chrome/common/chrome_switches.h"
please use gerrit instead 2015/06/06 01:42:12 Unused include.
Julius 2015/06/12 20:10:14 Done.
#include "chrome/common/pref_names.h"
+#include "chrome/common/spellcheck_common.h"
#include "chrome/grit/locale_settings.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/pref_registry/pref_registry_syncable.h"
@@ -69,9 +72,21 @@ KeyedService* SpellcheckServiceFactory::BuildServiceInstanceFor(
void SpellcheckServiceFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* user_prefs) {
// TODO(estade): IDS_SPELLCHECK_DICTIONARY should be an ASCII string.
- user_prefs->RegisterStringPref(
- prefs::kSpellCheckDictionary,
- l10n_util::GetStringUTF8(IDS_SPELLCHECK_DICTIONARY));
+
+ // TODO(juliusa): Implement preference migration between multilingual
+ // spellchecking and single-language spellchecking.
+ if (chrome::spellcheck_common::MultilingualSpellcheckIsEnabled()) {
+ user_prefs->RegisterStringPref(
+ prefs::kSpellCheckDictionaries,
+ l10n_util::GetStringUTF8(IDS_SPELLCHECK_DICTIONARY),
+ user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
+ } else {
+ user_prefs->RegisterStringPref(
+ prefs::kSpellCheckDictionary,
+ l10n_util::GetStringUTF8(IDS_SPELLCHECK_DICTIONARY),
+ user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
+ }
+
user_prefs->RegisterBooleanPref(prefs::kSpellCheckUseSpellingService, false);
user_prefs->RegisterBooleanPref(
prefs::kEnableContinuousSpellcheck,

Powered by Google App Engine
This is Rietveld 408576698