| 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 // A fake implementation of the SyncScheduler. If needed, we should add default | 5 // A fake implementation of the SyncScheduler. If needed, we should add default |
| 6 // logic needed for tests (invoking callbacks, etc) here rather than in higher | 6 // logic needed for tests (invoking callbacks, etc) here rather than in higher |
| 7 // level test classes. | 7 // level test classes. |
| 8 | 8 |
| 9 #ifndef COMPONENTS_SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ | 9 #ifndef COMPONENTS_SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ |
| 10 #define COMPONENTS_SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ | 10 #define COMPONENTS_SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 const tracked_objects::Location& nudge_location) override; | 35 const tracked_objects::Location& nudge_location) override; |
| 36 void ScheduleConfiguration(const ConfigurationParams& params) override; | 36 void ScheduleConfiguration(const ConfigurationParams& params) override; |
| 37 void ScheduleClearServerData(const ClearParams& params) override; | 37 void ScheduleClearServerData(const ClearParams& params) override; |
| 38 | 38 |
| 39 void ScheduleInitialSyncNudge(syncer::ModelType model_type) override; | 39 void ScheduleInitialSyncNudge(syncer::ModelType model_type) override; |
| 40 void SetNotificationsEnabled(bool notifications_enabled) override; | 40 void SetNotificationsEnabled(bool notifications_enabled) override; |
| 41 | 41 |
| 42 void OnCredentialsUpdated() override; | 42 void OnCredentialsUpdated() override; |
| 43 void OnConnectionStatusChange() override; | 43 void OnConnectionStatusChange() override; |
| 44 | 44 |
| 45 // SyncSession::Delegate implementation. | 45 // SyncCycle::Delegate implementation. |
| 46 void OnThrottled(const base::TimeDelta& throttle_duration) override; | 46 void OnThrottled(const base::TimeDelta& throttle_duration) override; |
| 47 void OnTypesThrottled(ModelTypeSet types, | 47 void OnTypesThrottled(ModelTypeSet types, |
| 48 const base::TimeDelta& throttle_duration) override; | 48 const base::TimeDelta& throttle_duration) override; |
| 49 bool IsCurrentlyThrottled() override; | 49 bool IsCurrentlyThrottled() override; |
| 50 void OnReceivedShortPollIntervalUpdate( | 50 void OnReceivedShortPollIntervalUpdate( |
| 51 const base::TimeDelta& new_interval) override; | 51 const base::TimeDelta& new_interval) override; |
| 52 void OnReceivedLongPollIntervalUpdate( | 52 void OnReceivedLongPollIntervalUpdate( |
| 53 const base::TimeDelta& new_interval) override; | 53 const base::TimeDelta& new_interval) override; |
| 54 void OnReceivedCustomNudgeDelays( | 54 void OnReceivedCustomNudgeDelays( |
| 55 const std::map<ModelType, base::TimeDelta>& nudge_delays) override; | 55 const std::map<ModelType, base::TimeDelta>& nudge_delays) override; |
| 56 void OnReceivedClientInvalidationHintBufferSize(int size) override; | 56 void OnReceivedClientInvalidationHintBufferSize(int size) override; |
| 57 void OnSyncProtocolError(const SyncProtocolError& error) override; | 57 void OnSyncProtocolError(const SyncProtocolError& error) override; |
| 58 void OnReceivedGuRetryDelay(const base::TimeDelta& delay) override; | 58 void OnReceivedGuRetryDelay(const base::TimeDelta& delay) override; |
| 59 void OnReceivedMigrationRequest(ModelTypeSet types) override; | 59 void OnReceivedMigrationRequest(ModelTypeSet types) override; |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace syncer | 62 } // namespace syncer |
| 63 | 63 |
| 64 #endif // COMPONENTS_SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ | 64 #endif // COMPONENTS_SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ |
| OLD | NEW |