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

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

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo Created 9 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/options/chromeos/language_hangul_handler.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/language_hangul_handler.cc b/chrome/browser/ui/webui/options/chromeos/language_hangul_handler.cc
index b22eb8684456e1573c7606ecd11d1417aa664eb2..7279377dd20e7693ef8c330d44b3270268394f22 100644
--- a/chrome/browser/ui/webui/options/chromeos/language_hangul_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/language_hangul_handler.cc
@@ -35,9 +35,9 @@ 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(
+ option->Append(base::StringValue::New(
language_prefs::kHangulKeyboardNameIDPairs[i].keyboard_id));
- option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
+ option->Append(base::StringValue::New(l10n_util::GetStringUTF16(
language_prefs::kHangulKeyboardNameIDPairs[i].message_id)));
keyboard_layout_list->Append(option);
}

Powered by Google App Engine
This is Rietveld 408576698