Index: chrome/browser/dom_ui/personal_options_handler.cc |
diff --git a/chrome/browser/dom_ui/personal_options_handler.cc b/chrome/browser/dom_ui/personal_options_handler.cc |
index a1e6e441b00c113c4564351871e7243f394f13f3..09bf9ccb6263de54c63d004b657f7edce47b2e63 100644 |
--- a/chrome/browser/dom_ui/personal_options_handler.cc |
+++ b/chrome/browser/dom_ui/personal_options_handler.cc |
@@ -103,9 +103,9 @@ void PersonalOptionsHandler::SetSyncStatusUIString(const Value* value) { |
ProfileSyncService* service = dom_ui_->GetProfile()->GetProfileSyncService(); |
if(service != NULL && ProfileSyncService::IsSyncEnabled()) { |
scoped_ptr<Value> status_string(Value::CreateStringValue( |
- l10n_util::GetStringF(IDS_SYNC_ACCOUNT_SYNCED_TO_USER_WITH_TIME, |
- UTF16ToWide(service->GetAuthenticatedUsername()), |
- service->GetLastSyncedTimeString()))); |
+ l10n_util::GetStringFUTF16(IDS_SYNC_ACCOUNT_SYNCED_TO_USER_WITH_TIME, |
+ service->GetAuthenticatedUsername(), |
+ service->GetLastSyncedTimeString()))); |
dom_ui_->CallJavascriptFunction( |
L"PersonalOptions.syncStatusCallback", |