| 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));
|
| }
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
|
|