blob: 585248e3523d13f336c68c2fce3024138e245e21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "sync/test/engine/fake_sync_scheduler.h"
namespace syncer {
FakeSyncScheduler::FakeSyncScheduler() {}
FakeSyncScheduler::~FakeSyncScheduler() {}
void FakeSyncScheduler::Start(Mode mode) {
}
void FakeSyncScheduler::RequestStop() {
}
void FakeSyncScheduler::ScheduleLocalNudge(
const base::TimeDelta& desired_delay,
ModelTypeSet types,
const tracked_objects::Location& nudge_location) {
}
void FakeSyncScheduler::ScheduleLocalRefreshRequest(
const base::TimeDelta& desired_delay,
ModelTypeSet types,
const tracked_objects::Location& nudge_location) {
}
void FakeSyncScheduler::ScheduleInvalidationNudge(
const base::TimeDelta& desired_delay,
const ModelTypeInvalidationMap& invalidation_map,
const tracked_objects::Location& nudge_location) {
}
bool FakeSyncScheduler::ScheduleConfiguration(
const ConfigurationParams& params) {
params.ready_task.Run();
return true;
}
void FakeSyncScheduler::SetNotificationsEnabled(bool notifications_enabled) {
}
base::TimeDelta FakeSyncScheduler::GetSessionsCommitDelay() const {
return base::TimeDelta();
}
void FakeSyncScheduler::OnCredentialsUpdated() {
}
void FakeSyncScheduler::OnConnectionStatusChange() {
}
void FakeSyncScheduler::OnThrottled(
const base::TimeDelta& throttle_duration) {
}
void FakeSyncScheduler::OnTypesThrottled(
ModelTypeSet types,
const base::TimeDelta& throttle_duration) {
}
bool FakeSyncScheduler::IsCurrentlyThrottled() {
return false;
}
void FakeSyncScheduler::OnReceivedShortPollIntervalUpdate(
const base::TimeDelta& new_interval) {
}
void FakeSyncScheduler::OnReceivedLongPollIntervalUpdate(
const base::TimeDelta& new_interval) {
}
void FakeSyncScheduler::OnReceivedSessionsCommitDelay(
const base::TimeDelta& new_delay) {
}
void FakeSyncScheduler::OnReceivedClientInvalidationHintBufferSize(int size) {
}
void FakeSyncScheduler::OnShouldStopSyncingPermanently() {
}
void FakeSyncScheduler::OnSyncProtocolError(
const sessions::SyncSessionSnapshot& snapshot) {
}
} // namespace syncer
|