summaryrefslogtreecommitdiffstats
path: root/sync/engine/syncer.h
diff options
context:
space:
mode:
authorrlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-16 18:14:43 +0000
committerrlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-16 18:14:43 +0000
commit092ba99e28fdec0b84384e0fd59eaa3cd7b31a3b (patch)
treea3b1992d31f2a291388b7e009afd235d144d0c8f /sync/engine/syncer.h
parentec06f819c6d2cbbe67821877b4b2c46f7ceb00c3 (diff)
downloadchromium_src-092ba99e28fdec0b84384e0fd59eaa3cd7b31a3b.zip
chromium_src-092ba99e28fdec0b84384e0fd59eaa3cd7b31a3b.tar.gz
chromium_src-092ba99e28fdec0b84384e0fd59eaa3cd7b31a3b.tar.bz2
sync: Merge {Verify,Process}UpdatesCommand
The VerifyUpdatesCommand was used to ensure the validity of each update that had been delivered from the server and to prepare for the ProcessUpdatesCommand. The ProcessUpdatesCommand would then take all updates that had been successfully verified and move them into the SERVER_ fields of the sync directory. It turns out that the logic can be greatly simplified by performing both tasks within the same command. This patch does not take full advantage of the merge. This patch is intended simply to merge the two files, with the goal of performing more significant refactorings later. BUG=154654 Review URL: https://chromiumcodereview.appspot.com/11091009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162176 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/engine/syncer.h')
-rw-r--r--sync/engine/syncer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sync/engine/syncer.h b/sync/engine/syncer.h
index 8fadde9..3c4c68e 100644
--- a/sync/engine/syncer.h
+++ b/sync/engine/syncer.h
@@ -27,7 +27,6 @@ class MutableEntry;
enum SyncerStep {
SYNCER_BEGIN,
DOWNLOAD_UPDATES,
- VERIFY_UPDATES,
PROCESS_UPDATES,
STORE_TIMESTAMPS,
APPLY_UPDATES,