| Index: sync/engine/get_commit_ids_command.cc
|
| diff --git a/sync/engine/get_commit_ids_command.cc b/sync/engine/get_commit_ids_command.cc
|
| index 55d7e232b12941228f9e9108bdae0f58148da53e..ecc5cf9def31a56604600f998846ad5244774d5a 100644
|
| --- a/sync/engine/get_commit_ids_command.cc
|
| +++ b/sync/engine/get_commit_ids_command.cc
|
| @@ -127,14 +127,6 @@ bool IsEntryReadyForCommit(syncable::ModelTypeSet throttled_types,
|
| if (throttled_types.Has(type))
|
| return false;
|
|
|
| - // Drop deleted uncommitted entries.
|
| - if (entry.Get(syncable::IS_DEL) && !entry.Get(syncable::ID).ServerKnows()) {
|
| - // TODO(zea): These will remain unsynced indefinitely. This is harmless,
|
| - // but we should clean them up somewhere.
|
| - DVLOG(1) << "Ignoring deleted and uncommitted item." << entry;
|
| - return false;
|
| - }
|
| -
|
| // Extra validity checks.
|
| syncable::Id id = entry.Get(syncable::ID);
|
| if (id == entry.Get(syncable::PARENT_ID)) {
|
|
|