| Index: chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc b/chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc
|
| index 88e331b69cc7639b0c557d8043191c723933b32d..18ddf572e0041f60249dfa070d3389eedba5d49b 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc
|
| @@ -83,8 +83,8 @@ void KeyboardHandler::GetLocalizedValues(DictionaryValue* localized_strings) {
|
| continue;
|
| }
|
| ListValue* option = new ListValue();
|
| - option->Append(Value::CreateIntegerValue(value));
|
| - option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
|
| + option->Append(new base::FundamentalValue(value));
|
| + option->Append(new base::StringValue(l10n_util::GetStringUTF16(
|
| message_id)));
|
| list_value->Append(option);
|
| }
|
|
|