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 3ab4e7419ae08226f8a4eee450038172f0a89c26..51926f270fd2604fe1aa6b01a91120d70e90a570 100644 |
--- a/chrome/browser/sync/sync_ui_util.cc |
+++ b/chrome/browser/sync/sync_ui_util.cc |
@@ -231,14 +231,12 @@ MessageType GetStatusInfo(ProfileSyncService* service, |
l10n_util::GetStringUTF16(IDS_SYNC_PASSWORD_SYNC_ATTENTION)); |
} |
return SYNC_PROMO; |
- } else { |
- // First machine. Don't show promotion, just show everything |
- // normal. |
- if (status_label) |
- status_label->assign(GetSyncedStateStatusLabel(service)); |
- return SYNCED; |
} |
} |
+ |
+ // There is no error. Display "Last synced..." message. |
+ if (status_label) |
+ status_label->assign(GetSyncedStateStatusLabel(service)); |
return SYNCED; |
} else { |
// Either show auth error information with a link to re-login, auth in prog, |