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 // An implementation of Invalidator that wraps an invalidation | 5 // An implementation of Invalidator that wraps an invalidation |
6 // client. Handles the details of connecting to XMPP and hooking it | 6 // client. Handles the details of connecting to XMPP and hooking it |
7 // up to the invalidation client. | 7 // up to the invalidation client. |
8 // | 8 // |
9 // You probably don't want to use this directly; use | 9 // You probably don't want to use this directly; use |
10 // NonBlockingInvalidationNotifier. | 10 // NonBlockingInvalidationNotifier. |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 // Invalidator implementation. | 52 // Invalidator implementation. |
53 virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE; | 53 virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE; |
54 virtual void UpdateRegisteredIds(InvalidationHandler* handler, | 54 virtual void UpdateRegisteredIds(InvalidationHandler* handler, |
55 const ObjectIdSet& ids) OVERRIDE; | 55 const ObjectIdSet& ids) OVERRIDE; |
56 virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE; | 56 virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE; |
57 virtual InvalidatorState GetInvalidatorState() const OVERRIDE; | 57 virtual InvalidatorState GetInvalidatorState() const OVERRIDE; |
58 virtual void SetUniqueId(const std::string& unique_id) OVERRIDE; | 58 virtual void SetUniqueId(const std::string& unique_id) OVERRIDE; |
59 virtual void SetStateDeprecated(const std::string& state) OVERRIDE; | 59 virtual void SetStateDeprecated(const std::string& state) OVERRIDE; |
60 virtual void UpdateCredentials( | 60 virtual void UpdateCredentials( |
61 const std::string& email, const std::string& token) OVERRIDE; | 61 const std::string& email, const std::string& token) OVERRIDE; |
62 virtual void SendInvalidation(const ObjectIdStateMap& id_state_map) OVERRIDE; | 62 virtual void SendInvalidation( |
| 63 const ObjectIdInvalidationMap& invalidation_map) OVERRIDE; |
63 | 64 |
64 // SyncInvalidationListener::Delegate implementation. | 65 // SyncInvalidationListener::Delegate implementation. |
65 virtual void OnInvalidate(const ObjectIdStateMap& id_state_map) OVERRIDE; | 66 virtual void OnInvalidate( |
| 67 const ObjectIdInvalidationMap& invalidation_map) OVERRIDE; |
66 virtual void OnInvalidatorStateChange(InvalidatorState state) OVERRIDE; | 68 virtual void OnInvalidatorStateChange(InvalidatorState state) OVERRIDE; |
67 | 69 |
68 private: | 70 private: |
69 // We start off in the STOPPED state. When we get our initial | 71 // We start off in the STOPPED state. When we get our initial |
70 // credentials, we connect and move to the CONNECTING state. When | 72 // credentials, we connect and move to the CONNECTING state. When |
71 // we're connected we start the invalidation client and move to the | 73 // we're connected we start the invalidation client and move to the |
72 // STARTED state. We never go back to a previous state. | 74 // STARTED state. We never go back to a previous state. |
73 enum State { | 75 enum State { |
74 STOPPED, | 76 STOPPED, |
75 CONNECTING, | 77 CONNECTING, |
(...skipping 23 matching lines...) Expand all Loading... |
99 | 101 |
100 // The invalidation listener. | 102 // The invalidation listener. |
101 SyncInvalidationListener invalidation_listener_; | 103 SyncInvalidationListener invalidation_listener_; |
102 | 104 |
103 DISALLOW_COPY_AND_ASSIGN(InvalidationNotifier); | 105 DISALLOW_COPY_AND_ASSIGN(InvalidationNotifier); |
104 }; | 106 }; |
105 | 107 |
106 } // namespace syncer | 108 } // namespace syncer |
107 | 109 |
108 #endif // SYNC_NOTIFIER_INVALIDATION_NOTIFIER_H_ | 110 #endif // SYNC_NOTIFIER_INVALIDATION_NOTIFIER_H_ |
OLD | NEW |