Index: sync/test/fake_server/fake_server.h |
diff --git a/sync/test/fake_server/fake_server.h b/sync/test/fake_server/fake_server.h |
index 8bb2c088491e3c28154627c221dbec8a8c7e32bf..c33db91cce89db08192293d209c040c4ec373ce5 100644 |
--- a/sync/test/fake_server/fake_server.h |
+++ b/sync/test/fake_server/fake_server.h |
@@ -32,7 +32,9 @@ class FakeServer { |
// Called after FakeServer has processed a successful commit. The types |
// updated as part of the commit are passed in |committed_model_types|. |
- virtual void OnCommit(syncer::ModelTypeSet committed_model_types) = 0; |
+ virtual void OnCommit( |
+ const std::string& committer_id, |
+ syncer::ModelTypeSet committed_model_types) = 0; |
}; |
FakeServer(); |
@@ -71,7 +73,8 @@ class FakeServer { |
sync_pb::GetUpdatesResponse* response); |
// Processes a Commit call. |
- bool HandleCommitRequest(const sync_pb::CommitMessage& commit, |
+ bool HandleCommitRequest(const sync_pb::CommitMessage& message, |
+ const std::string& invalidator_client_id, |
sync_pb::CommitResponse* response); |
// Inserts the default permanent items in |entities_|. |