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

Unified Diff: chrome/browser/ui/webui/options/chromeos/language_pinyin_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_pinyin_handler.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/language_pinyin_handler.cc b/chrome/browser/ui/webui/options/chromeos/language_pinyin_handler.cc
index 978ab3c6812491be44232d4dc0e980b3988eb4e2..133fe21f2e5c23aea9dab7532bba444037d96c19 100644
--- a/chrome/browser/ui/webui/options/chromeos/language_pinyin_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/language_pinyin_handler.cc
@@ -50,10 +50,10 @@ void LanguagePinyinHandler::GetLocalizedValues(
item_message_id == 0)
break;
ListValue* option = new ListValue();
- option->Append(Value::CreateIntegerValue(
+ option->Append(base::NumberValue::New(
language_prefs::kPinyinDoublePinyinSchema.values_and_ids[i].
ibus_config_value));
- option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
+ option->Append(base::StringValue::New(l10n_util::GetStringUTF16(
language_prefs::kPinyinDoublePinyinSchema.values_and_ids[i].
item_message_id)));
list_value->Append(option);

Powered by Google App Engine
This is Rietveld 408576698