| 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 SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ | 9 #ifndef SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ |
| 10 #define SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ | 10 #define SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ |
| 11 | 11 |
| 12 #include "base/message_loop/message_loop.h" | 12 #include "base/message_loop/message_loop.h" |
| 13 #include "sync/engine/sync_scheduler.h" | 13 #include "sync/engine/sync_scheduler.h" |
| 14 | 14 |
| 15 namespace syncer { | 15 namespace syncer { |
| 16 | 16 |
| 17 class FakeSyncScheduler : public SyncScheduler { | 17 class FakeSyncScheduler : public SyncScheduler { |
| 18 public: | 18 public: |
| 19 FakeSyncScheduler(); | 19 FakeSyncScheduler(); |
| 20 virtual ~FakeSyncScheduler(); | 20 virtual ~FakeSyncScheduler(); |
| 21 | 21 |
| 22 virtual void Start(Mode mode) OVERRIDE; | 22 virtual void Start(Mode mode) override; |
| 23 virtual void Stop() OVERRIDE; | 23 virtual void Stop() override; |
| 24 virtual void ScheduleLocalNudge( | 24 virtual void ScheduleLocalNudge( |
| 25 ModelTypeSet types, | 25 ModelTypeSet types, |
| 26 const tracked_objects::Location& nudge_location) OVERRIDE; | 26 const tracked_objects::Location& nudge_location) override; |
| 27 virtual void ScheduleLocalRefreshRequest( | 27 virtual void ScheduleLocalRefreshRequest( |
| 28 ModelTypeSet types, | 28 ModelTypeSet types, |
| 29 const tracked_objects::Location& nudge_location) OVERRIDE; | 29 const tracked_objects::Location& nudge_location) override; |
| 30 virtual void ScheduleInvalidationNudge( | 30 virtual void ScheduleInvalidationNudge( |
| 31 syncer::ModelType type, | 31 syncer::ModelType type, |
| 32 scoped_ptr<InvalidationInterface> interface, | 32 scoped_ptr<InvalidationInterface> interface, |
| 33 const tracked_objects::Location& nudge_location) OVERRIDE; | 33 const tracked_objects::Location& nudge_location) override; |
| 34 virtual void ScheduleConfiguration( | 34 virtual void ScheduleConfiguration( |
| 35 const ConfigurationParams& params) OVERRIDE; | 35 const ConfigurationParams& params) override; |
| 36 virtual void ScheduleInitialSyncNudge(syncer::ModelType model_type) OVERRIDE; | 36 virtual void ScheduleInitialSyncNudge(syncer::ModelType model_type) override; |
| 37 virtual void SetNotificationsEnabled(bool notifications_enabled) OVERRIDE; | 37 virtual void SetNotificationsEnabled(bool notifications_enabled) override; |
| 38 | 38 |
| 39 virtual void OnCredentialsUpdated() OVERRIDE; | 39 virtual void OnCredentialsUpdated() override; |
| 40 virtual void OnConnectionStatusChange() OVERRIDE; | 40 virtual void OnConnectionStatusChange() override; |
| 41 | 41 |
| 42 // SyncSession::Delegate implementation. | 42 // SyncSession::Delegate implementation. |
| 43 virtual void OnThrottled( | 43 virtual void OnThrottled( |
| 44 const base::TimeDelta& throttle_duration) OVERRIDE; | 44 const base::TimeDelta& throttle_duration) override; |
| 45 virtual void OnTypesThrottled( | 45 virtual void OnTypesThrottled( |
| 46 ModelTypeSet types, | 46 ModelTypeSet types, |
| 47 const base::TimeDelta& throttle_duration) OVERRIDE; | 47 const base::TimeDelta& throttle_duration) override; |
| 48 virtual bool IsCurrentlyThrottled() OVERRIDE; | 48 virtual bool IsCurrentlyThrottled() override; |
| 49 virtual void OnReceivedShortPollIntervalUpdate( | 49 virtual void OnReceivedShortPollIntervalUpdate( |
| 50 const base::TimeDelta& new_interval) OVERRIDE; | 50 const base::TimeDelta& new_interval) override; |
| 51 virtual void OnReceivedLongPollIntervalUpdate( | 51 virtual void OnReceivedLongPollIntervalUpdate( |
| 52 const base::TimeDelta& new_interval) OVERRIDE; | 52 const base::TimeDelta& new_interval) override; |
| 53 virtual void OnReceivedCustomNudgeDelays( | 53 virtual void OnReceivedCustomNudgeDelays( |
| 54 const std::map<ModelType, base::TimeDelta>& nudge_delays) OVERRIDE; | 54 const std::map<ModelType, base::TimeDelta>& nudge_delays) override; |
| 55 virtual void OnReceivedClientInvalidationHintBufferSize(int size) OVERRIDE; | 55 virtual void OnReceivedClientInvalidationHintBufferSize(int size) override; |
| 56 virtual void OnSyncProtocolError( | 56 virtual void OnSyncProtocolError( |
| 57 const SyncProtocolError& error) OVERRIDE; | 57 const SyncProtocolError& error) override; |
| 58 virtual void OnReceivedGuRetryDelay( | 58 virtual void OnReceivedGuRetryDelay( |
| 59 const base::TimeDelta& delay) OVERRIDE; | 59 const base::TimeDelta& delay) override; |
| 60 virtual void OnReceivedMigrationRequest(ModelTypeSet types) OVERRIDE; | 60 virtual void OnReceivedMigrationRequest(ModelTypeSet types) override; |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace syncer | 63 } // namespace syncer |
| 64 | 64 |
| 65 #endif // SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ | 65 #endif // SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ |
| OLD | NEW |