Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Unified Diff: sync/engine/process_commit_response_command.cc

Issue 10389103: Sync: Clear IS_UNSYNCED for deleted local items (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix check_deps issue by moving ChangeEntryIDAndUpdateChildren Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sync/engine/process_commit_response_command.cc
diff --git a/sync/engine/process_commit_response_command.cc b/sync/engine/process_commit_response_command.cc
index b82ff6d5246dac3c908b4060444a7c390d9d3dcf..6b2f6332f2f3cd5fc5c0df2a27f3934d2055dede 100644
--- a/sync/engine/process_commit_response_command.cc
+++ b/sync/engine/process_commit_response_command.cc
@@ -336,8 +336,7 @@ bool ProcessCommitResponseCommand::ChangeIdAfterCommit(
<< " during commit " << same_id;
return false;
}
- SyncerUtil::ChangeEntryIDAndUpdateChildren(
- trans, local_entry, entry_response.id());
+ ChangeEntryIDAndUpdateChildren(trans, local_entry, entry_response.id());
DVLOG(1) << "Changing ID to " << entry_response.id();
}
return true;

Powered by Google App Engine
This is Rietveld 408576698