OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // An implementation of SyncNotifier that wraps InvalidationNotifier | 5 // An implementation of SyncNotifier that wraps InvalidationNotifier |
6 // on its own thread. | 6 // on its own thread. |
7 | 7 |
8 #ifndef COMPONENTS_INVALIDATION_NON_BLOCKING_INVALIDATOR_H_ | 8 #ifndef COMPONENTS_INVALIDATION_NON_BLOCKING_INVALIDATOR_H_ |
9 #define COMPONENTS_INVALIDATION_NON_BLOCKING_INVALIDATOR_H_ | 9 #define COMPONENTS_INVALIDATION_NON_BLOCKING_INVALIDATOR_H_ |
10 | 10 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 const std::string& invalidation_bootstrap_data, | 48 const std::string& invalidation_bootstrap_data, |
49 InvalidationStateTracker* invalidation_state_tracker, | 49 InvalidationStateTracker* invalidation_state_tracker, |
50 const std::string& client_info, | 50 const std::string& client_info, |
51 const scoped_refptr<net::URLRequestContextGetter>& | 51 const scoped_refptr<net::URLRequestContextGetter>& |
52 request_context_getter); | 52 request_context_getter); |
53 | 53 |
54 ~NonBlockingInvalidator() override; | 54 ~NonBlockingInvalidator() override; |
55 | 55 |
56 // Invalidator implementation. | 56 // Invalidator implementation. |
57 void RegisterHandler(InvalidationHandler* handler) override; | 57 void RegisterHandler(InvalidationHandler* handler) override; |
58 void UpdateRegisteredIds(InvalidationHandler* handler, | 58 bool UpdateRegisteredIds(InvalidationHandler* handler, |
59 const ObjectIdSet& ids) override; | 59 const ObjectIdSet& ids) override; |
60 void UnregisterHandler(InvalidationHandler* handler) override; | 60 void UnregisterHandler(InvalidationHandler* handler) override; |
61 InvalidatorState GetInvalidatorState() const override; | 61 InvalidatorState GetInvalidatorState() const override; |
62 void UpdateCredentials(const std::string& email, | 62 void UpdateCredentials(const std::string& email, |
63 const std::string& token) override; | 63 const std::string& token) override; |
64 void RequestDetailedStatus(base::Callback<void(const base::DictionaryValue&)> | 64 void RequestDetailedStatus(base::Callback<void(const base::DictionaryValue&)> |
65 callback) const override; | 65 callback) const override; |
66 | 66 |
67 // Static functions to construct callback that creates network channel for | 67 // Static functions to construct callback that creates network channel for |
68 // SyncSystemResources. The goal is to pass network channel to invalidator at | 68 // SyncSystemResources. The goal is to pass network channel to invalidator at |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_; | 103 scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_; |
104 | 104 |
105 base::WeakPtrFactory<NonBlockingInvalidator> weak_ptr_factory_; | 105 base::WeakPtrFactory<NonBlockingInvalidator> weak_ptr_factory_; |
106 | 106 |
107 DISALLOW_COPY_AND_ASSIGN(NonBlockingInvalidator); | 107 DISALLOW_COPY_AND_ASSIGN(NonBlockingInvalidator); |
108 }; | 108 }; |
109 | 109 |
110 } // namespace syncer | 110 } // namespace syncer |
111 | 111 |
112 #endif // COMPONENTS_INVALIDATION_NON_BLOCKING_INVALIDATOR_H_ | 112 #endif // COMPONENTS_INVALIDATION_NON_BLOCKING_INVALIDATOR_H_ |
OLD | NEW |