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

Unified Diff: chrome/browser/sync/sync_ui_util.cc

Issue 6104003: sync: use progress markers instead of timestamps during GetUpdates (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tim's fixes Created 9 years, 11 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
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 d49ada13b402d9dbc7a124c59250ee4bd49565ac..3f45c38c2eb3617ab8d602ba5111b4ebdb7939c0 100644
--- a/chrome/browser/sync/sync_ui_util.cc
+++ b/chrome/browser/sync/sync_ui_util.cc
@@ -338,14 +338,14 @@ void ConstructAboutInformation(ProfileSyncService* service,
"Updates Available",
full_status.updates_available);
sync_ui_util::AddIntSyncDetail(details,
- "Updates Received",
+ "Updates Downloaded (All)",
full_status.updates_received);
+ sync_ui_util::AddIntSyncDetail(details,
+ "Updates Downloaded (Tombstones)",
+ full_status.tombstone_updates_received);
sync_ui_util::AddBoolSyncDetail(details,
"Disk Full",
full_status.disk_full);
- sync_ui_util::AddBoolSyncDetail(details,
- "Invalid Store",
- full_status.invalid_store);
sync_ui_util::AddIntSyncDetail(details,
"Max Consecutive Errors",
full_status.max_consecutive_errors);
« no previous file with comments | « chrome/browser/sync/sessions/sync_session_unittest.cc ('k') | chrome/browser/sync/syncable/directory_backing_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698