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

Side by Side Diff: trunk/src/sync/notifier/p2p_invalidator.h

Issue 17610004: Revert 208315 "Make use of InvalidationService" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « trunk/src/sync/notifier/non_blocking_invalidator.cc ('k') | trunk/src/sync/sync_notifier.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 invalidator that uses p2p invalidations based on XMPP push 5 // An invalidator that uses p2p invalidations based on XMPP push
6 // notifications. Used only for sync integration tests. 6 // notifications. Used only for sync integration tests.
7 7
8 #ifndef SYNC_NOTIFIER_P2P_INVALIDATOR_H_ 8 #ifndef SYNC_NOTIFIER_P2P_INVALIDATOR_H_
9 #define SYNC_NOTIFIER_P2P_INVALIDATOR_H_ 9 #define SYNC_NOTIFIER_P2P_INVALIDATOR_H_
10 10
11 #include <string> 11 #include <string>
12 12
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
17 #include "base/observer_list.h" 17 #include "base/observer_list.h"
18 #include "base/threading/thread_checker.h" 18 #include "base/threading/thread_checker.h"
19 #include "jingle/notifier/base/notifier_options.h"
20 #include "jingle/notifier/listener/push_client.h"
21 #include "jingle/notifier/listener/push_client_observer.h" 19 #include "jingle/notifier/listener/push_client_observer.h"
22 #include "sync/base/sync_export.h" 20 #include "sync/base/sync_export.h"
23 #include "sync/internal_api/public/base/model_type.h" 21 #include "sync/internal_api/public/base/model_type.h"
24 #include "sync/notifier/invalidator.h" 22 #include "sync/notifier/invalidator.h"
25 #include "sync/notifier/invalidator_registrar.h" 23 #include "sync/notifier/invalidator_registrar.h"
26 #include "sync/notifier/invalidator_state.h" 24 #include "sync/notifier/invalidator_state.h"
27 25
28 namespace notifier { 26 namespace notifier {
29 class PushClient; 27 class PushClient;
30 } // namespace notifier 28 } // namespace notifier
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 // Invalidator implementation. 101 // Invalidator implementation.
104 virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE; 102 virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE;
105 virtual void UpdateRegisteredIds(InvalidationHandler* handler, 103 virtual void UpdateRegisteredIds(InvalidationHandler* handler,
106 const ObjectIdSet& ids) OVERRIDE; 104 const ObjectIdSet& ids) OVERRIDE;
107 virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE; 105 virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE;
108 virtual void Acknowledge(const invalidation::ObjectId& id, 106 virtual void Acknowledge(const invalidation::ObjectId& id,
109 const AckHandle& ack_handle) OVERRIDE; 107 const AckHandle& ack_handle) OVERRIDE;
110 virtual InvalidatorState GetInvalidatorState() const OVERRIDE; 108 virtual InvalidatorState GetInvalidatorState() const OVERRIDE;
111 virtual void UpdateCredentials( 109 virtual void UpdateCredentials(
112 const std::string& email, const std::string& token) OVERRIDE; 110 const std::string& email, const std::string& token) OVERRIDE;
111 virtual void SendInvalidation(
112 const ObjectIdInvalidationMap& invalidation_map) OVERRIDE;
113 113
114 // PushClientObserver implementation. 114 // PushClientObserver implementation.
115 virtual void OnNotificationsEnabled() OVERRIDE; 115 virtual void OnNotificationsEnabled() OVERRIDE;
116 virtual void OnNotificationsDisabled( 116 virtual void OnNotificationsDisabled(
117 notifier::NotificationsDisabledReason reason) OVERRIDE; 117 notifier::NotificationsDisabledReason reason) OVERRIDE;
118 virtual void OnIncomingNotification( 118 virtual void OnIncomingNotification(
119 const notifier::Notification& notification) OVERRIDE; 119 const notifier::Notification& notification) OVERRIDE;
120 120
121 void SendInvalidation(
122 const ObjectIdInvalidationMap& invalidation_map);
123
124 void SendNotificationDataForTest( 121 void SendNotificationDataForTest(
125 const P2PNotificationData& notification_data); 122 const P2PNotificationData& notification_data);
126 123
127 private: 124 private:
128 void SendNotificationData(const P2PNotificationData& notification_data); 125 void SendNotificationData(const P2PNotificationData& notification_data);
129 126
130 base::ThreadChecker thread_checker_; 127 base::ThreadChecker thread_checker_;
131 128
132 InvalidatorRegistrar registrar_; 129 InvalidatorRegistrar registrar_;
133 130
134 // The push client. 131 // The push client.
135 scoped_ptr<notifier::PushClient> push_client_; 132 scoped_ptr<notifier::PushClient> push_client_;
136 // Our unique ID. 133 // Our unique ID.
137 std::string invalidator_client_id_; 134 std::string invalidator_client_id_;
138 // Whether we have called UpdateCredentials() yet. 135 // Whether we have called UpdateCredentials() yet.
139 bool logged_in_; 136 bool logged_in_;
140 bool notifications_enabled_; 137 bool notifications_enabled_;
141 // Which set of clients should be sent notifications. 138 // Which set of clients should be sent notifications.
142 P2PNotificationTarget send_notification_target_; 139 P2PNotificationTarget send_notification_target_;
143 140
144 DISALLOW_COPY_AND_ASSIGN(P2PInvalidator); 141 DISALLOW_COPY_AND_ASSIGN(P2PInvalidator);
145 }; 142 };
146 143
147 } // namespace syncer 144 } // namespace syncer
148 145
149 #endif // SYNC_NOTIFIER_P2P_INVALIDATOR_H_ 146 #endif // SYNC_NOTIFIER_P2P_INVALIDATOR_H_
OLDNEW
« no previous file with comments | « trunk/src/sync/notifier/non_blocking_invalidator.cc ('k') | trunk/src/sync/sync_notifier.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698