Index: sync/engine/apply_updates_and_resolve_conflicts_command.cc |
diff --git a/sync/engine/apply_updates_and_resolve_conflicts_command.cc b/sync/engine/apply_updates_and_resolve_conflicts_command.cc |
index 454ba5a9ca32833cd8c9df4002d924fe0b4903f5..971f90dde548a0699d2def479cf1008f7322e906 100644 |
--- a/sync/engine/apply_updates_and_resolve_conflicts_command.cc |
+++ b/sync/engine/apply_updates_and_resolve_conflicts_command.cc |
@@ -128,20 +128,6 @@ SyncerError ApplyUpdatesAndResolveConflictsCommand::ModelChangingExecuteImpl( |
DCHECK(conflict_applicator.simple_conflict_ids().empty()); |
} |
- // This might be the first time we've fully completed a sync cycle, for |
- // some subset of the currently synced datatypes. |
- if (status->ServerSaysNothingMoreToDownload()) { |
- for (ModelTypeSet::Iterator it = |
- status->updates_request_types().First(); it.Good(); it.Inc()) { |
- // Don't set the flag for control types. We didn't process them here. |
- if (IsControlType(it.Get())) |
- continue; |
- |
- // This gets persisted to the directory's backing store. |
- dir->set_initial_sync_ended_for_type(it.Get(), true); |
- } |
- } |
- |
return SYNCER_OK; |
} |