| OLD | NEW |
| 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" | 19 #include "jingle/notifier/base/notifier_options.h" |
| 20 #include "jingle/notifier/listener/push_client.h" | 20 #include "jingle/notifier/listener/push_client.h" |
| 21 #include "jingle/notifier/listener/push_client_observer.h" | 21 #include "jingle/notifier/listener/push_client_observer.h" |
| 22 #include "sync/base/sync_export.h" | 22 #include "sync/base/sync_export.h" |
| 23 #include "sync/internal_api/public/base/model_type.h" | 23 #include "sync/internal_api/public/base/model_type.h" |
| 24 #include "sync/notifier/invalidator.h" | 24 #include "sync/notifier/invalidator.h" |
| 25 #include "sync/notifier/invalidator_registrar.h" | 25 #include "sync/notifier/invalidator_registrar.h" |
| 26 #include "sync/notifier/invalidator_state.h" | 26 #include "sync/notifier/invalidator_state.h" |
| 27 #include "sync/notifier/object_id_invalidation_map.h" |
| 27 | 28 |
| 28 namespace notifier { | 29 namespace notifier { |
| 29 class PushClient; | 30 class PushClient; |
| 30 } // namespace notifier | 31 } // namespace notifier |
| 31 | 32 |
| 32 namespace syncer { | 33 namespace syncer { |
| 33 | 34 |
| 34 // The channel to use for sync notifications. | 35 // The channel to use for sync notifications. |
| 35 SYNC_EXPORT extern const char kSyncP2PNotificationChannel[]; | 36 SYNC_EXPORT extern const char kSyncP2PNotificationChannel[]; |
| 36 | 37 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 virtual void UpdateCredentials( | 112 virtual void UpdateCredentials( |
| 112 const std::string& email, const std::string& token) OVERRIDE; | 113 const std::string& email, const std::string& token) OVERRIDE; |
| 113 | 114 |
| 114 // PushClientObserver implementation. | 115 // PushClientObserver implementation. |
| 115 virtual void OnNotificationsEnabled() OVERRIDE; | 116 virtual void OnNotificationsEnabled() OVERRIDE; |
| 116 virtual void OnNotificationsDisabled( | 117 virtual void OnNotificationsDisabled( |
| 117 notifier::NotificationsDisabledReason reason) OVERRIDE; | 118 notifier::NotificationsDisabledReason reason) OVERRIDE; |
| 118 virtual void OnIncomingNotification( | 119 virtual void OnIncomingNotification( |
| 119 const notifier::Notification& notification) OVERRIDE; | 120 const notifier::Notification& notification) OVERRIDE; |
| 120 | 121 |
| 121 void SendInvalidation( | 122 void SendInvalidation(const ObjectIdSet& ids); |
| 122 const ObjectIdInvalidationMap& invalidation_map); | |
| 123 | 123 |
| 124 void SendNotificationDataForTest( | 124 void SendNotificationDataForTest( |
| 125 const P2PNotificationData& notification_data); | 125 const P2PNotificationData& notification_data); |
| 126 | 126 |
| 127 private: | 127 private: |
| 128 void SendNotificationData(const P2PNotificationData& notification_data); | 128 void SendNotificationData(const P2PNotificationData& notification_data); |
| 129 | 129 |
| 130 base::ThreadChecker thread_checker_; | 130 base::ThreadChecker thread_checker_; |
| 131 | 131 |
| 132 InvalidatorRegistrar registrar_; | 132 InvalidatorRegistrar registrar_; |
| 133 | 133 |
| 134 // The push client. | 134 // The push client. |
| 135 scoped_ptr<notifier::PushClient> push_client_; | 135 scoped_ptr<notifier::PushClient> push_client_; |
| 136 // Our unique ID. | 136 // Our unique ID. |
| 137 std::string invalidator_client_id_; | 137 std::string invalidator_client_id_; |
| 138 // Whether we have called UpdateCredentials() yet. | 138 // Whether we have called UpdateCredentials() yet. |
| 139 bool logged_in_; | 139 bool logged_in_; |
| 140 bool notifications_enabled_; | 140 bool notifications_enabled_; |
| 141 // Which set of clients should be sent notifications. | 141 // Which set of clients should be sent notifications. |
| 142 P2PNotificationTarget send_notification_target_; | 142 P2PNotificationTarget send_notification_target_; |
| 143 | 143 |
| 144 DISALLOW_COPY_AND_ASSIGN(P2PInvalidator); | 144 DISALLOW_COPY_AND_ASSIGN(P2PInvalidator); |
| 145 }; | 145 }; |
| 146 | 146 |
| 147 } // namespace syncer | 147 } // namespace syncer |
| 148 | 148 |
| 149 #endif // SYNC_NOTIFIER_P2P_INVALIDATOR_H_ | 149 #endif // SYNC_NOTIFIER_P2P_INVALIDATOR_H_ |
| OLD | NEW |