summaryrefslogtreecommitdiffstats
path: root/sync/engine/store_timestamps_command.cc
diff options
context:
space:
mode:
authorrlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-12 18:15:45 +0000
committerrlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-12 18:15:45 +0000
commit447a5b6333539c309e015ee8f98ff6d9e131fa85 (patch)
tree4357764ce00fdfbff7809d348a16a5f601bd3b08 /sync/engine/store_timestamps_command.cc
parent13d5e1af907ece2266b391c322344fb0af43d9f0 (diff)
downloadchromium_src-447a5b6333539c309e015ee8f98ff6d9e131fa85.zip
chromium_src-447a5b6333539c309e015ee8f98ff6d9e131fa85.tar.gz
chromium_src-447a5b6333539c309e015ee8f98ff6d9e131fa85.tar.bz2
Remove syncproto.h
Replace sync/engine/syncproto.h with sync/syncable/syncable_proto_util.h and .cc. The tasks that used to be performed by member functions of the syncer:: proto wrapper classes are now handled by static member functions. Unfortunately, serialization and de-serialization of syncable::Id to/from proto fields has gotten a bit uglier. On the other hand, it's now much less magical and mysterious. The test intended to prevent regressions of crbug.com/134715 has been replaced with a DCHECK. We'll have to rely on it to ensure that the protocol_version field is always explicitly set. BUG=136454 TEST= Review URL: https://chromiumcodereview.appspot.com/10735041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146393 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/engine/store_timestamps_command.cc')
-rw-r--r--sync/engine/store_timestamps_command.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sync/engine/store_timestamps_command.cc b/sync/engine/store_timestamps_command.cc
index 5911fca..0925e33 100644
--- a/sync/engine/store_timestamps_command.cc
+++ b/sync/engine/store_timestamps_command.cc
@@ -18,7 +18,7 @@ SyncerError StoreTimestampsCommand::ExecuteImpl(
sessions::SyncSession* session) {
syncable::Directory* dir = session->context()->directory();
- const GetUpdatesResponse& updates =
+ const sync_pb::GetUpdatesResponse& updates =
session->status_controller().updates_response().get_updates();
sessions::StatusController* status = session->mutable_status_controller();