Index: chrome/browser/dom_ui/options/language_options_handler_common.cc |
diff --git a/chrome/browser/dom_ui/options/language_options_handler_common.cc b/chrome/browser/dom_ui/options/language_options_handler_common.cc |
index 5c9e515d9f4fd9d3680837a30c385a8c90288871..08e1c218ff406f110d8319c9a11e71afbee818cf 100644 |
--- a/chrome/browser/dom_ui/options/language_options_handler_common.cc |
+++ b/chrome/browser/dom_ui/options/language_options_handler_common.cc |
@@ -97,8 +97,8 @@ void LanguageOptionsHandlerCommon::GetLocalizedValues( |
const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
bool experimental_spell_check_features = |
command_line.HasSwitch(switches::kExperimentalSpellcheckerFeatures); |
- localized_strings->SetString("experimentalSpellCheckFeatures", |
- experimental_spell_check_features ? "true" : "false"); |
+ localized_strings->SetBoolean("experimentalSpellCheckFeatures", |
+ experimental_spell_check_features); |
} |
void LanguageOptionsHandlerCommon::RegisterMessages() { |