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

Unified Diff: chrome/browser/sync/internal_api/all_status.cc

Issue 9702083: sync: Count and report reflected updates (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update python test server Created 8 years, 9 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/internal_api/all_status.cc
diff --git a/chrome/browser/sync/internal_api/all_status.cc b/chrome/browser/sync/internal_api/all_status.cc
index 6f0edb7ff886cd2a14666bac855f1377cfb56add..1316fecc1d18a874d6e57e2420608a118ff0004e 100644
--- a/chrome/browser/sync/internal_api/all_status.cc
+++ b/chrome/browser/sync/internal_api/all_status.cc
@@ -72,6 +72,8 @@ sync_api::SyncManager::Status AllStatus::CalcSyncing(
snapshot->syncer_status.num_updates_downloaded_total;
status.tombstone_updates_received +=
snapshot->syncer_status.num_tombstone_updates_downloaded_total;
+ status.reflected_updates_received +=
+ snapshot->syncer_status.num_reflected_updates_downloaded_total;
status.num_local_overwrites_total +=
snapshot->syncer_status.num_local_overwrites;
status.num_server_overwrites_total +=
« no previous file with comments | « no previous file | chrome/browser/sync/internal_api/debug_info_event_listener.cc » ('j') | net/tools/testserver/chromiumsync.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698