Index: chrome/browser/ui/webui/options2/chromeos/language_hangul_handler.cc |
diff --git a/chrome/browser/ui/webui/options2/chromeos/language_hangul_handler.cc b/chrome/browser/ui/webui/options2/chromeos/language_hangul_handler.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5362ccfb11db7fcfc2ec90940ef5129c908bb0b7 |
--- /dev/null |
+++ b/chrome/browser/ui/webui/options2/chromeos/language_hangul_handler.cc |
@@ -0,0 +1,47 @@ |
+// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "chrome/browser/ui/webui/options2/chromeos/language_hangul_handler.h" |
+ |
+#include "base/utf_string_conversions.h" |
+#include "base/values.h" |
+#include "chrome/browser/chromeos/language_preferences.h" |
+#include "grit/generated_resources.h" |
+#include "ui/base/l10n/l10n_util.h" |
+ |
+namespace chromeos { |
+ |
+LanguageHangulHandler::LanguageHangulHandler() { |
+} |
+ |
+LanguageHangulHandler::~LanguageHangulHandler() { |
+} |
+ |
+void LanguageHangulHandler::GetLocalizedValues( |
+ DictionaryValue* localized_strings) { |
+ DCHECK(localized_strings); |
+ |
+ RegisterTitle(localized_strings, "languageHangulPage", |
+ IDS_OPTIONS_SETTINGS_LANGUAGES_HANGUL_SETTINGS_TITLE); |
+ |
+ localized_strings->SetString("hangul_keyboard_layout", |
+ l10n_util::GetStringUTF16(IDS_OPTIONS_SETTINGS_KEYBOARD_LAYOUT_TEXT)); |
+ |
+ localized_strings->Set("HangulkeyboardLayoutList", GetKeyboardLayoutList()); |
+} |
+ |
+ListValue* LanguageHangulHandler::GetKeyboardLayoutList() { |
+ ListValue* keyboard_layout_list = new ListValue(); |
+ for (size_t i = 0; i < language_prefs::kNumHangulKeyboardNameIDPairs; ++i) { |
+ ListValue* option = new ListValue(); |
+ option->Append(Value::CreateStringValue( |
+ language_prefs::kHangulKeyboardNameIDPairs[i].keyboard_id)); |
+ option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16( |
+ language_prefs::kHangulKeyboardNameIDPairs[i].message_id))); |
+ keyboard_layout_list->Append(option); |
+ } |
+ return keyboard_layout_list; |
+} |
+ |
+} // namespace chromeos |