diff options
author | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-24 02:17:30 +0000 |
---|---|---|
committer | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-24 02:17:30 +0000 |
commit | de4963c3f017007f36853564f4ed2ccbf299f454 (patch) | |
tree | 9d68f678cfceb2c61d29bc68fca27b421e2194b8 /chrome/browser/sync/internal_api/sync_manager.cc | |
parent | c87efedd255ab42f25fc44588ecdb22e7af43bcb (diff) | |
download | chromium_src-de4963c3f017007f36853564f4ed2ccbf299f454.zip chromium_src-de4963c3f017007f36853564f4ed2ccbf299f454.tar.gz chromium_src-de4963c3f017007f36853564f4ed2ccbf299f454.tar.bz2 |
sync: Count and report reflected updates
Many of the updates a sync client receives are echoes of its own
changes. This patch attempts to count how often these updates are
received by comparing the version of downloaded updates against the
local version.
These counts are exposed locally through AllStatus/about:sync. We also
upload this information to the server through the ClientDebugInfo
mechanism.
BUG=117565
TEST=
Review URL: http://codereview.chromium.org/9702083
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128659 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/internal_api/sync_manager.cc')
-rw-r--r-- | chrome/browser/sync/internal_api/sync_manager.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/sync/internal_api/sync_manager.cc b/chrome/browser/sync/internal_api/sync_manager.cc index a02c965..6740e20 100644 --- a/chrome/browser/sync/internal_api/sync_manager.cc +++ b/chrome/browser/sync/internal_api/sync_manager.cc @@ -706,6 +706,7 @@ SyncManager::Status::Status() initial_sync_ended(false), updates_available(0), updates_received(0), + reflected_updates_received(0), tombstone_updates_received(0), num_local_overwrites_total(0), num_server_overwrites_total(0), |