diff options
Diffstat (limited to 'sync/notifier/sync_notifier.h')
-rw-r--r-- | sync/notifier/sync_notifier.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sync/notifier/sync_notifier.h b/sync/notifier/sync_notifier.h index c171baa..24c59a0 100644 --- a/sync/notifier/sync_notifier.h +++ b/sync/notifier/sync_notifier.h @@ -40,15 +40,13 @@ class SyncNotifier { virtual void UpdateCredentials( const std::string& email, const std::string& token) = 0; - virtual void UpdateEnabledTypes( - syncable::ModelTypeSet enabled_types) = 0; + virtual void UpdateEnabledTypes(syncer::ModelTypeSet enabled_types) = 0; // This is here only to support the old p2p notification implementation, // which is still used by sync integration tests. // TODO(akalin): Remove this once we move the integration tests off p2p // notifications. - virtual void SendNotification( - syncable::ModelTypeSet changed_types) = 0; + virtual void SendNotification(syncer::ModelTypeSet changed_types) = 0; }; } // namespace syncer |