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

Unified Diff: chrome/browser/chromeos/login/background_view.cc

Issue 7791020: Fix localized "platform" message for non-8bit languages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: hange from ASCIIToWide to UTF8ToWide too for boottime string. 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
« no previous file with comments | « no previous file | chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/background_view.cc
diff --git a/chrome/browser/chromeos/login/background_view.cc b/chrome/browser/chromeos/login/background_view.cc
index 6d4f03ec4c45c6a491ff725bea68fc519c8d9b2b..a0ce6b181a80983048dcb95a248902694ba69307 100644
--- a/chrome/browser/chromeos/login/background_view.cc
+++ b/chrome/browser/chromeos/login/background_view.cc
@@ -309,12 +309,12 @@ void BackgroundView::OnLocaleChanged() {
void BackgroundView::OnOSVersionLabelTextUpdated(
const std::string& os_version_label_text) {
- os_version_label_->SetText(ASCIIToWide(os_version_label_text));
+ os_version_label_->SetText(UTF8ToWide(os_version_label_text));
}
void BackgroundView::OnBootTimesLabelTextUpdated(
const std::string& boot_times_label_text) {
- boot_times_label_->SetText(ASCIIToWide(boot_times_label_text));
+ boot_times_label_->SetText(UTF8ToWide(boot_times_label_text));
}
///////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « no previous file | chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698