| Index: sync/internal_api/sync_manager_impl.h
|
| diff --git a/sync/internal_api/sync_manager_impl.h b/sync/internal_api/sync_manager_impl.h
|
| index 7efde2d3869e0754839bc4fa68622a9f1260cdee..92280206d870bd8e7640ecba988a83a4ba19401d 100644
|
| --- a/sync/internal_api/sync_manager_impl.h
|
| +++ b/sync/internal_api/sync_manager_impl.h
|
| @@ -25,7 +25,6 @@
|
| #include "sync/internal_api/public/user_share.h"
|
| #include "sync/internal_api/sync_encryption_handler_impl.h"
|
| #include "sync/js/js_backend.h"
|
| -#include "sync/notifier/invalidation_handler.h"
|
| #include "sync/syncable/directory_change_delegate.h"
|
| #include "sync/util/cryptographer.h"
|
| #include "sync/util/time.h"
|
| @@ -102,7 +101,7 @@ class SYNC_EXPORT_PRIVATE SyncManagerImpl :
|
| const ModelSafeRoutingInfo& new_routing_info,
|
| const base::Closure& ready_task,
|
| const base::Closure& retry_task) OVERRIDE;
|
| - virtual void OnInvalidatorStateChange(InvalidatorState state) OVERRIDE;
|
| + virtual void SetInvalidatorEnabled(bool invalidator_enabled) OVERRIDE;
|
| virtual void OnIncomingInvalidation(
|
| syncer::ModelType type,
|
| scoped_ptr<InvalidationInterface> invalidation) OVERRIDE;
|
| @@ -206,8 +205,6 @@ class SYNC_EXPORT_PRIVATE SyncManagerImpl :
|
| private:
|
| friend class SyncManagerTest;
|
| FRIEND_TEST_ALL_PREFIXES(SyncManagerTest, NudgeDelayTest);
|
| - FRIEND_TEST_ALL_PREFIXES(SyncManagerTest, OnNotificationStateChange);
|
| - FRIEND_TEST_ALL_PREFIXES(SyncManagerTest, OnIncomingNotification);
|
| FRIEND_TEST_ALL_PREFIXES(SyncManagerTest, PurgeDisabledTypes);
|
| FRIEND_TEST_ALL_PREFIXES(SyncManagerTest, PurgeUnappliedTypes);
|
|
|
| @@ -339,8 +336,6 @@ class SYNC_EXPORT_PRIVATE SyncManagerImpl :
|
|
|
| bool observing_network_connectivity_changes_;
|
|
|
| - InvalidatorState invalidator_state_;
|
| -
|
| // Map used to store the notification info to be displayed in
|
| // about:sync page.
|
| NotificationInfoMap notification_info_map_;
|
|
|