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

Unified Diff: chrome/browser/ui/webui/options/language_options_handler_common.cc

Issue 654653002: Enables the user to select multiple languages for spellchecking (UI) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reset unneccessary changes. Created 5 years, 10 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/ui/webui/options/language_options_handler_common.cc
diff --git a/chrome/browser/ui/webui/options/language_options_handler_common.cc b/chrome/browser/ui/webui/options/language_options_handler_common.cc
index 0cfd34b19f4b776814e7b828d538ae14b6fa879b..404803cf3f78d32d26fa4aa0a00c37be72757819 100644
--- a/chrome/browser/ui/webui/options/language_options_handler_common.cc
+++ b/chrome/browser/ui/webui/options/language_options_handler_common.cc
@@ -125,6 +125,11 @@ void LanguageOptionsHandlerCommon::GetLocalizedValues(
localized_strings->SetBoolean("enableSpellingAutoCorrect",
enable_spelling_auto_correct);
+ bool enable_multilingual_spellchecker =
+ command_line.HasSwitch(switches::kEnableMultilingualSpellChecker);
+ localized_strings->SetBoolean("enableMultilingualSpellChecker",
+ enable_multilingual_spellchecker);
please use gerrit instead 2015/02/23 18:51:48 Please inline "enable_multilingual_spellchecker."
Klemen Forstnerič 2015/02/24 21:57:46 Done. It was a conscious decision though, because
please use gerrit instead 2015/02/24 23:38:38 I see. Although we usually prefer to follow the co
+
Profile* profile = Profile::FromWebUI(web_ui());
PrefService* prefs = profile->GetPrefs();
std::string default_target_language =

Powered by Google App Engine
This is Rietveld 408576698