summaryrefslogtreecommitdiffstats
path: root/sync/notifier/fake_invalidator.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sync/notifier/fake_invalidator.cc')
-rw-r--r--sync/notifier/fake_invalidator.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/sync/notifier/fake_invalidator.cc b/sync/notifier/fake_invalidator.cc
index b7cfd4d..c8216af 100644
--- a/sync/notifier/fake_invalidator.cc
+++ b/sync/notifier/fake_invalidator.cc
@@ -50,7 +50,7 @@ void FakeInvalidator::RegisterHandler(InvalidationHandler* handler) {
}
void FakeInvalidator::UpdateRegisteredIds(InvalidationHandler* handler,
- const ObjectIdSet& ids) {
+ const ObjectIdSet& ids) {
registrar_.UpdateRegisteredIds(handler, ids);
}
@@ -58,6 +58,11 @@ void FakeInvalidator::UnregisterHandler(InvalidationHandler* handler) {
registrar_.UnregisterHandler(handler);
}
+void FakeInvalidator::Acknowledge(const invalidation::ObjectId& id,
+ const AckHandle& ack_handle) {
+ // Do nothing.
+}
+
InvalidatorState FakeInvalidator::GetInvalidatorState() const {
return registrar_.GetInvalidatorState();
}