| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_SYNC_CORE_TEST_FAKE_SYNC_MANAGER_H_ | 5 #ifndef COMPONENTS_SYNC_CORE_TEST_FAKE_SYNC_MANAGER_H_ |
| 6 #define COMPONENTS_SYNC_CORE_TEST_FAKE_SYNC_MANAGER_H_ | 6 #define COMPONENTS_SYNC_CORE_TEST_FAKE_SYNC_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 base::Time last_poll_time) override; | 82 base::Time last_poll_time) override; |
| 83 void ConfigureSyncer(ConfigureReason reason, | 83 void ConfigureSyncer(ConfigureReason reason, |
| 84 ModelTypeSet to_download, | 84 ModelTypeSet to_download, |
| 85 ModelTypeSet to_purge, | 85 ModelTypeSet to_purge, |
| 86 ModelTypeSet to_journal, | 86 ModelTypeSet to_journal, |
| 87 ModelTypeSet to_unapply, | 87 ModelTypeSet to_unapply, |
| 88 const ModelSafeRoutingInfo& new_routing_info, | 88 const ModelSafeRoutingInfo& new_routing_info, |
| 89 const base::Closure& ready_task, | 89 const base::Closure& ready_task, |
| 90 const base::Closure& retry_task) override; | 90 const base::Closure& retry_task) override; |
| 91 void OnIncomingInvalidation( | 91 void OnIncomingInvalidation( |
| 92 ModelType type, | 92 syncer::ModelType type, |
| 93 std::unique_ptr<InvalidationInterface> interface) override; | 93 std::unique_ptr<InvalidationInterface> interface) override; |
| 94 void SetInvalidatorEnabled(bool invalidator_enabled) override; | 94 void SetInvalidatorEnabled(bool invalidator_enabled) override; |
| 95 void AddObserver(Observer* observer) override; | 95 void AddObserver(Observer* observer) override; |
| 96 void RemoveObserver(Observer* observer) override; | 96 void RemoveObserver(Observer* observer) override; |
| 97 SyncStatus GetDetailedStatus() const override; | 97 SyncStatus GetDetailedStatus() const override; |
| 98 void SaveChanges() override; | 98 void SaveChanges() override; |
| 99 void ShutdownOnSyncThread(ShutdownReason reason) override; | 99 void ShutdownOnSyncThread(ShutdownReason reason) override; |
| 100 UserShare* GetUserShare() override; | 100 UserShare* GetUserShare() override; |
| 101 std::unique_ptr<ModelTypeConnector> GetModelTypeConnectorProxy() override; | 101 std::unique_ptr<syncer_v2::ModelTypeConnector> GetModelTypeConnectorProxy() |
| 102 override; |
| 102 const std::string cache_guid() override; | 103 const std::string cache_guid() override; |
| 103 bool ReceivedExperiment(Experiments* experiments) override; | 104 bool ReceivedExperiment(Experiments* experiments) override; |
| 104 bool HasUnsyncedItems() override; | 105 bool HasUnsyncedItems() override; |
| 105 SyncEncryptionHandler* GetEncryptionHandler() override; | 106 SyncEncryptionHandler* GetEncryptionHandler() override; |
| 106 std::vector<std::unique_ptr<ProtocolEvent>> GetBufferedProtocolEvents() | 107 std::vector<std::unique_ptr<ProtocolEvent>> GetBufferedProtocolEvents() |
| 107 override; | 108 override; |
| 108 void RefreshTypes(ModelTypeSet types) override; | 109 void RefreshTypes(ModelTypeSet types) override; |
| 109 void RegisterDirectoryTypeDebugInfoObserver( | 110 void RegisterDirectoryTypeDebugInfoObserver( |
| 110 TypeDebugInfoObserver* observer) override; | 111 syncer::TypeDebugInfoObserver* observer) override; |
| 111 void UnregisterDirectoryTypeDebugInfoObserver( | 112 void UnregisterDirectoryTypeDebugInfoObserver( |
| 112 TypeDebugInfoObserver* observer) override; | 113 syncer::TypeDebugInfoObserver* observer) override; |
| 113 bool HasDirectoryTypeDebugInfoObserver( | 114 bool HasDirectoryTypeDebugInfoObserver( |
| 114 TypeDebugInfoObserver* observer) override; | 115 syncer::TypeDebugInfoObserver* observer) override; |
| 115 void RequestEmitDebugInfo() override; | 116 void RequestEmitDebugInfo() override; |
| 116 void ClearServerData(const ClearServerDataCallback& callback) override; | 117 void ClearServerData(const ClearServerDataCallback& callback) override; |
| 117 void OnCookieJarChanged(bool account_mismatch, bool empty_jar) override; | 118 void OnCookieJarChanged(bool account_mismatch, bool empty_jar) override; |
| 118 | 119 |
| 119 private: | 120 private: |
| 120 scoped_refptr<base::SequencedTaskRunner> sync_task_runner_; | 121 scoped_refptr<base::SequencedTaskRunner> sync_task_runner_; |
| 121 | 122 |
| 122 base::ObserverList<SyncManager::Observer> observers_; | 123 base::ObserverList<SyncManager::Observer> observers_; |
| 123 | 124 |
| 124 // Faked directory state. | 125 // Faked directory state. |
| (...skipping 23 matching lines...) Expand all Loading... |
| 148 | 149 |
| 149 // Number of invalidations received since startup. | 150 // Number of invalidations received since startup. |
| 150 int num_invalidations_received_; | 151 int num_invalidations_received_; |
| 151 | 152 |
| 152 DISALLOW_COPY_AND_ASSIGN(FakeSyncManager); | 153 DISALLOW_COPY_AND_ASSIGN(FakeSyncManager); |
| 153 }; | 154 }; |
| 154 | 155 |
| 155 } // namespace syncer | 156 } // namespace syncer |
| 156 | 157 |
| 157 #endif // COMPONENTS_SYNC_CORE_TEST_FAKE_SYNC_MANAGER_H_ | 158 #endif // COMPONENTS_SYNC_CORE_TEST_FAKE_SYNC_MANAGER_H_ |
| OLD | NEW |