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

Unified Diff: chrome/browser/ui/webui/options2/chromeos/language_hangul_handler.cc

Issue 10837331: Options: s/options2/options/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wut Created 8 years, 4 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/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
deleted file mode 100644
index ee08dfe4134fde6b97f5971743da584d1e6d46d4..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/webui/options2/chromeos/language_hangul_handler.cc
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright (c) 2012 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 {
-namespace options {
-
-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 options
-} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698