Index: sync/internal_api/public/sync_manager.h |
diff --git a/sync/internal_api/public/sync_manager.h b/sync/internal_api/public/sync_manager.h |
index 1fccac4e7ce519ae232b7b76aaa3808e50d5e6a0..b08810cc4c39983683386063f772b4fa9c191b95 100644 |
--- a/sync/internal_api/public/sync_manager.h |
+++ b/sync/internal_api/public/sync_manager.h |
@@ -407,12 +407,19 @@ class SyncManager { |
virtual void UpdateEnabledTypes( |
const ModelTypeSet& enabled_types) = 0; |
- // Forwards to the underlying notifier (see |
- // SyncNotifier::UpdateRegisteredIds()). |
+ // Forwards to the underlying notifier (see comments in sync_notifier.h). |
+ virtual void RegisterInvalidationHandler( |
+ SyncNotifierObserver* handler) = 0; |
+ |
+ // Forwards to the underlying notifier (see comments in sync_notifier.h). |
virtual void UpdateRegisteredInvalidationIds( |
SyncNotifierObserver* handler, |
const ObjectIdSet& ids) = 0; |
+ // Forwards to the underlying notifier (see comments in sync_notifier.h). |
+ virtual void UnregisterInvalidationHandler( |
+ SyncNotifierObserver* handler) = 0; |
+ |
// Put the syncer in normal mode ready to perform nudges and polls. |
virtual void StartSyncingNormally( |
const ModelSafeRoutingInfo& routing_info) = 0; |