| Index: chrome/browser/sync/engine/all_status.cc
|
| diff --git a/chrome/browser/sync/engine/all_status.cc b/chrome/browser/sync/engine/all_status.cc
|
| index 4b2dbb0cc97753c8e1cb2bfbf985b30f1bc0c4af..1853a2602a4a9ed087414d30c59a30978385adf1 100644
|
| --- a/chrome/browser/sync/engine/all_status.cc
|
| +++ b/chrome/browser/sync/engine/all_status.cc
|
| @@ -53,8 +53,9 @@ sync_api::SyncManager::Status AllStatus::CalcSyncing(
|
| // But this is only used for status, so it is better to have visibility.
|
| status.conflicting_count += snapshot->num_conflicting_updates;
|
|
|
| - status.syncing |= snapshot->syncer_status.syncing;
|
| - status.syncing = snapshot->has_more_to_sync && snapshot->is_silenced;
|
| + status.syncing |= snapshot->syncer_status.sync_in_progress;
|
| + status.syncing =
|
| + snapshot->has_more_to_sync && snapshot->is_silenced;
|
| status.initial_sync_ended |= snapshot->is_share_usable;
|
| status.syncer_stuck |= snapshot->syncer_status.syncer_stuck;
|
|
|
|
|