Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Side by Side Diff: components/sync/test/engine/fake_sync_scheduler.h

Issue 2376123003: [Sync] Move //components/sync to the syncer namespace. (Closed)
Patch Set: Rebase. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_
11 11
12 #include <map> 12 #include <map>
13 #include <memory>
13 14
14 #include "base/message_loop/message_loop.h" 15 #include "base/message_loop/message_loop.h"
15 #include "components/sync/engine_impl/sync_scheduler.h" 16 #include "components/sync/engine_impl/sync_scheduler.h"
16 17
17 namespace syncer { 18 namespace syncer {
18 19
19 class FakeSyncScheduler : public SyncScheduler { 20 class FakeSyncScheduler : public SyncScheduler {
20 public: 21 public:
21 FakeSyncScheduler(); 22 FakeSyncScheduler();
22 ~FakeSyncScheduler() override; 23 ~FakeSyncScheduler() override;
23 24
24 void Start(Mode mode, base::Time last_poll_time) override; 25 void Start(Mode mode, base::Time last_poll_time) override;
25 void Stop() override; 26 void Stop() override;
26 void ScheduleLocalNudge( 27 void ScheduleLocalNudge(
27 ModelTypeSet types, 28 ModelTypeSet types,
28 const tracked_objects::Location& nudge_location) override; 29 const tracked_objects::Location& nudge_location) override;
29 void ScheduleLocalRefreshRequest( 30 void ScheduleLocalRefreshRequest(
30 ModelTypeSet types, 31 ModelTypeSet types,
31 const tracked_objects::Location& nudge_location) override; 32 const tracked_objects::Location& nudge_location) override;
32 void ScheduleInvalidationNudge( 33 void ScheduleInvalidationNudge(
33 syncer::ModelType type, 34 ModelType type,
34 std::unique_ptr<InvalidationInterface> interface, 35 std::unique_ptr<InvalidationInterface> interface,
35 const tracked_objects::Location& nudge_location) override; 36 const tracked_objects::Location& nudge_location) override;
36 void ScheduleConfiguration(const ConfigurationParams& params) override; 37 void ScheduleConfiguration(const ConfigurationParams& params) override;
37 void ScheduleClearServerData(const ClearParams& params) override; 38 void ScheduleClearServerData(const ClearParams& params) override;
38 39
39 void ScheduleInitialSyncNudge(syncer::ModelType model_type) override; 40 void ScheduleInitialSyncNudge(ModelType model_type) override;
40 void SetNotificationsEnabled(bool notifications_enabled) override; 41 void SetNotificationsEnabled(bool notifications_enabled) override;
41 42
42 void OnCredentialsUpdated() override; 43 void OnCredentialsUpdated() override;
43 void OnConnectionStatusChange() override; 44 void OnConnectionStatusChange() override;
44 45
45 // SyncCycle::Delegate implementation. 46 // SyncCycle::Delegate implementation.
46 void OnThrottled(const base::TimeDelta& throttle_duration) override; 47 void OnThrottled(const base::TimeDelta& throttle_duration) override;
47 void OnTypesThrottled(ModelTypeSet types, 48 void OnTypesThrottled(ModelTypeSet types,
48 const base::TimeDelta& throttle_duration) override; 49 const base::TimeDelta& throttle_duration) override;
49 bool IsCurrentlyThrottled() override; 50 bool IsCurrentlyThrottled() override;
50 void OnReceivedShortPollIntervalUpdate( 51 void OnReceivedShortPollIntervalUpdate(
51 const base::TimeDelta& new_interval) override; 52 const base::TimeDelta& new_interval) override;
52 void OnReceivedLongPollIntervalUpdate( 53 void OnReceivedLongPollIntervalUpdate(
53 const base::TimeDelta& new_interval) override; 54 const base::TimeDelta& new_interval) override;
54 void OnReceivedCustomNudgeDelays( 55 void OnReceivedCustomNudgeDelays(
55 const std::map<ModelType, base::TimeDelta>& nudge_delays) override; 56 const std::map<ModelType, base::TimeDelta>& nudge_delays) override;
56 void OnReceivedClientInvalidationHintBufferSize(int size) override; 57 void OnReceivedClientInvalidationHintBufferSize(int size) override;
57 void OnSyncProtocolError(const SyncProtocolError& error) override; 58 void OnSyncProtocolError(const SyncProtocolError& error) override;
58 void OnReceivedGuRetryDelay(const base::TimeDelta& delay) override; 59 void OnReceivedGuRetryDelay(const base::TimeDelta& delay) override;
59 void OnReceivedMigrationRequest(ModelTypeSet types) override; 60 void OnReceivedMigrationRequest(ModelTypeSet types) override;
60 }; 61 };
61 62
62 } // namespace syncer 63 } // namespace syncer
63 64
64 #endif // COMPONENTS_SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_ 65 #endif // COMPONENTS_SYNC_TEST_ENGINE_FAKE_SYNC_SCHEDULER_H_
OLDNEW
« no previous file with comments | « components/sync/syncable/syncable_write_transaction.cc ('k') | components/sync/test/engine/fake_sync_scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698