blob: 1a99819e4903f7c4e1ba5a045b9da2dbe8628254 (
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
|
// 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/notifier/fake_invalidator.h"
namespace syncer {
FakeInvalidator::FakeInvalidator() {}
FakeInvalidator::~FakeInvalidator() {}
bool FakeInvalidator::IsHandlerRegistered(InvalidationHandler* handler) const {
return registrar_.IsHandlerRegisteredForTest(handler);
}
ObjectIdSet FakeInvalidator::GetRegisteredIds(
InvalidationHandler* handler) const {
return registrar_.GetRegisteredIds(handler);
}
const std::string& FakeInvalidator::GetUniqueId() const {
return unique_id_;
}
const std::string& FakeInvalidator::GetStateDeprecated() const {
return state_;
}
const std::string& FakeInvalidator::GetCredentialsEmail() const {
return email_;
}
const std::string& FakeInvalidator::GetCredentialsToken() const {
return token_;
}
const ObjectIdInvalidationMap&
FakeInvalidator::GetLastSentInvalidationMap() const {
return last_sent_invalidation_map_;
}
void FakeInvalidator::EmitOnInvalidatorStateChange(InvalidatorState state) {
registrar_.UpdateInvalidatorState(state);
}
void FakeInvalidator::EmitOnIncomingInvalidation(
const ObjectIdInvalidationMap& invalidation_map,
IncomingInvalidationSource source) {
registrar_.DispatchInvalidationsToHandlers(invalidation_map, source);
}
void FakeInvalidator::RegisterHandler(InvalidationHandler* handler) {
registrar_.RegisterHandler(handler);
}
void FakeInvalidator::UpdateRegisteredIds(InvalidationHandler* handler,
const ObjectIdSet& ids) {
registrar_.UpdateRegisteredIds(handler, ids);
}
void FakeInvalidator::UnregisterHandler(InvalidationHandler* handler) {
registrar_.UnregisterHandler(handler);
}
InvalidatorState FakeInvalidator::GetInvalidatorState() const {
return registrar_.GetInvalidatorState();
}
void FakeInvalidator::SetUniqueId(const std::string& unique_id) {
unique_id_ = unique_id;
}
void FakeInvalidator::SetStateDeprecated(const std::string& state) {
state_ = state;
}
void FakeInvalidator::UpdateCredentials(
const std::string& email, const std::string& token) {
email_ = email;
token_ = token;
}
void FakeInvalidator::SendInvalidation(
const ObjectIdInvalidationMap& invalidation_map) {
last_sent_invalidation_map_ = invalidation_map;
}
} // namespace syncer
|