| Index: chrome/browser/sync/sync_ui_util.cc
|
| diff --git a/chrome/browser/sync/sync_ui_util.cc b/chrome/browser/sync/sync_ui_util.cc
|
| index 4e2422f45e50e9a0d23e0bdd0070311db2019bbe..3364f6752d6705e2fd6b0fc6b7e48c7e21be95db 100644
|
| --- a/chrome/browser/sync/sync_ui_util.cc
|
| +++ b/chrome/browser/sync/sync_ui_util.cc
|
| @@ -59,10 +59,9 @@ string16 GetSyncedStateStatusLabel(ProfileSyncService* service) {
|
| if (user_name.empty())
|
| return label;
|
|
|
| - return l10n_util::GetStringFUTF16(
|
| - IDS_SYNC_ACCOUNT_SYNCED_TO_USER_WITH_TIME,
|
| - user_name,
|
| - WideToUTF16(service->GetLastSyncedTimeString()));
|
| + return l10n_util::GetStringFUTF16(IDS_SYNC_ACCOUNT_SYNCED_TO_USER_WITH_TIME,
|
| + user_name,
|
| + service->GetLastSyncedTimeString());
|
| }
|
|
|
| // TODO(akalin): Write unit tests for these three functions below.
|
|
|