diff options
author | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-12 05:25:06 +0000 |
---|---|---|
committer | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-12 05:25:06 +0000 |
commit | 3fc0b406884268c87811a06ac05b02037fdc2d5c (patch) | |
tree | e2b895ef083dfadbaec9e62f7f43216bed30d5ba /sync/internal_api/public | |
parent | 7f8afda277ad1e991375826a55a1a6017ce549a8 (diff) | |
download | chromium_src-3fc0b406884268c87811a06ac05b02037fdc2d5c.zip chromium_src-3fc0b406884268c87811a06ac05b02037fdc2d5c.tar.gz chromium_src-3fc0b406884268c87811a06ac05b02037fdc2d5c.tar.bz2 |
sync: Remove some fields from about:sync
Removes some of the status indicators on about:sync that were made
obsolete by the introduction of the protocol events log.
BUG=349301
Review URL: https://codereview.chromium.org/235923004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263483 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/internal_api/public')
-rw-r--r-- | sync/internal_api/public/engine/sync_status.cc | 6 | ||||
-rw-r--r-- | sync/internal_api/public/engine/sync_status.h | 12 |
2 files changed, 0 insertions, 18 deletions
diff --git a/sync/internal_api/public/engine/sync_status.cc b/sync/internal_api/public/engine/sync_status.cc index 6291b29..b1687e3 100644 --- a/sync/internal_api/public/engine/sync_status.cc +++ b/sync/internal_api/public/engine/sync_status.cc @@ -21,12 +21,6 @@ SyncStatus::SyncStatus() num_commits_total(0), num_local_overwrites_total(0), num_server_overwrites_total(0), - nonempty_get_updates(0), - empty_get_updates(0), - sync_cycles_with_commits(0), - sync_cycles_without_commits(0), - useless_sync_cycles(0), - useful_sync_cycles(0), nudge_source_notification(0), nudge_source_local(0), nudge_source_local_refresh(0), diff --git a/sync/internal_api/public/engine/sync_status.h b/sync/internal_api/public/engine/sync_status.h index 124dac6..c32be00 100644 --- a/sync/internal_api/public/engine/sync_status.h +++ b/sync/internal_api/public/engine/sync_status.h @@ -65,18 +65,6 @@ struct SYNC_EXPORT SyncStatus { int num_local_overwrites_total; int num_server_overwrites_total; - // Count of empty and non empty getupdates; - int nonempty_get_updates; - int empty_get_updates; - - // Count of sync cycles that successfully committed items; - int sync_cycles_with_commits; - int sync_cycles_without_commits; - - // Count of useless and useful syncs we perform. - int useless_sync_cycles; - int useful_sync_cycles; - // Nudge counts for each possible source int nudge_source_notification; int nudge_source_local; |