| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/ui/webui/options/chromeos/language_hangul_handler.h" | |
| 6 | |
| 7 #include "base/strings/utf_string_conversions.h" | |
| 8 #include "base/values.h" | |
| 9 #include "chrome/browser/chromeos/language_preferences.h" | |
| 10 #include "grit/generated_resources.h" | |
| 11 #include "ui/base/l10n/l10n_util.h" | |
| 12 | |
| 13 namespace chromeos { | |
| 14 namespace options { | |
| 15 | |
| 16 LanguageHangulHandler::LanguageHangulHandler() { | |
| 17 } | |
| 18 | |
| 19 LanguageHangulHandler::~LanguageHangulHandler() { | |
| 20 } | |
| 21 | |
| 22 void LanguageHangulHandler::GetLocalizedValues( | |
| 23 DictionaryValue* localized_strings) { | |
| 24 DCHECK(localized_strings); | |
| 25 | |
| 26 RegisterTitle(localized_strings, "languageHangulPage", | |
| 27 IDS_OPTIONS_SETTINGS_LANGUAGES_HANGUL_SETTINGS_TITLE); | |
| 28 | |
| 29 localized_strings->SetString("hangulKeyboardLayout", | |
| 30 l10n_util::GetStringUTF16(IDS_OPTIONS_SETTINGS_KEYBOARD_LAYOUT_TEXT)); | |
| 31 | |
| 32 localized_strings->Set("HangulkeyboardLayoutList", GetKeyboardLayoutList()); | |
| 33 } | |
| 34 | |
| 35 ListValue* LanguageHangulHandler::GetKeyboardLayoutList() { | |
| 36 ListValue* keyboard_layout_list = new ListValue(); | |
| 37 for (size_t i = 0; i < language_prefs::kNumHangulKeyboardNameIDPairs; ++i) { | |
| 38 ListValue* option = new ListValue(); | |
| 39 option->Append(new base::StringValue( | |
| 40 language_prefs::kHangulKeyboardNameIDPairs[i].keyboard_id)); | |
| 41 option->Append(new base::StringValue(l10n_util::GetStringUTF16( | |
| 42 language_prefs::kHangulKeyboardNameIDPairs[i].message_id))); | |
| 43 keyboard_layout_list->Append(option); | |
| 44 } | |
| 45 return keyboard_layout_list; | |
| 46 } | |
| 47 | |
| 48 } // namespace options | |
| 49 } // namespace chromeos | |
| OLD | NEW |