| Index: sync/internal_api/all_status.cc
|
| diff --git a/sync/internal_api/all_status.cc b/sync/internal_api/all_status.cc
|
| index 3cbfb8f713a43c121ffd62ae6d621b699642030c..8f6c9da7324ac6b956acc916c9b47bd977a8b9cd 100644
|
| --- a/sync/internal_api/all_status.cc
|
| +++ b/sync/internal_api/all_status.cc
|
| @@ -30,7 +30,6 @@ sync_api::SyncManager::Status AllStatus::CreateBlankStatus() const {
|
| // whose values accumulate (e.g. lifetime counters like updates_received)
|
| // are not to be cleared here.
|
| sync_api::SyncManager::Status status = status_;
|
| - status.unsynced_count = 0;
|
| status.encryption_conflicts = 0;
|
| status.hierarchy_conflicts = 0;
|
| status.simple_conflicts = 0;
|
| @@ -45,7 +44,6 @@ sync_api::SyncManager::Status AllStatus::CalcSyncing(
|
| const SyncEngineEvent &event) const {
|
| sync_api::SyncManager::Status status = CreateBlankStatus();
|
| const sessions::SyncSessionSnapshot& snapshot = event.snapshot;
|
| - status.unsynced_count = static_cast<int>(snapshot.unsynced_count());
|
| status.encryption_conflicts = snapshot.num_encryption_conflicts();
|
| status.hierarchy_conflicts = snapshot.num_hierarchy_conflicts();
|
| status.simple_conflicts = snapshot.num_simple_conflicts();
|
|
|