diff options
author | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-28 17:25:43 +0000 |
---|---|---|
committer | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-28 17:25:43 +0000 |
commit | ecfe00c95c3cfc8e0b85682e0320afe1cb83cd74 (patch) | |
tree | 7c4178b2b0e37fbb15d34af20a5954f93eb6a070 /sync/internal_api/public/engine | |
parent | f26417d92b7e22c3b911bf219a04eae372c09c2f (diff) | |
download | chromium_src-ecfe00c95c3cfc8e0b85682e0320afe1cb83cd74.zip chromium_src-ecfe00c95c3cfc8e0b85682e0320afe1cb83cd74.tar.gz chromium_src-ecfe00c95c3cfc8e0b85682e0320afe1cb83cd74.tar.bz2 |
Remove changes remaining counter from about:sync
The label "changes remaining" is not quite correct. It's actually set
to either zero or one, depending on whether or not the current sync
cycle should result in more downloads.
If there is an issue with infinite download looping, we should be able
to detect and debug it based on the protocol logs, among other things.
The protocol logs indicate when a GetUpdates response had a non-zero
"changes remaining" value.
BUG=349301
Review URL: https://codereview.chromium.org/256413007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266594 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/internal_api/public/engine')
-rw-r--r-- | sync/internal_api/public/engine/sync_status.cc | 1 | ||||
-rw-r--r-- | sync/internal_api/public/engine/sync_status.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/sync/internal_api/public/engine/sync_status.cc b/sync/internal_api/public/engine/sync_status.cc index b1687e3..6ac894e 100644 --- a/sync/internal_api/public/engine/sync_status.cc +++ b/sync/internal_api/public/engine/sync_status.cc @@ -14,7 +14,6 @@ SyncStatus::SyncStatus() server_conflicts(0), committed_count(0), syncing(false), - updates_available(0), updates_received(0), reflected_updates_received(0), tombstone_updates_received(0), diff --git a/sync/internal_api/public/engine/sync_status.h b/sync/internal_api/public/engine/sync_status.h index c32be00..1c284ce 100644 --- a/sync/internal_api/public/engine/sync_status.h +++ b/sync/internal_api/public/engine/sync_status.h @@ -49,8 +49,6 @@ struct SYNC_EXPORT SyncStatus { bool syncing; - // Total updates available. If zero, nothing left to download. - int64 updates_available; // Total updates received by the syncer since browser start. int updates_received; // Total updates received that are echoes of our own changes. |