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 // A class that manages the registration of types for server-issued | 5 // A class that manages the registration of types for server-issued |
6 // notifications. | 6 // notifications. |
7 | 7 |
8 #ifndef COMPONENTS_INVALIDATION_REGISTRATION_MANAGER_H_ | 8 #ifndef COMPONENTS_INVALIDATION_REGISTRATION_MANAGER_H_ |
9 #define COMPONENTS_INVALIDATION_REGISTRATION_MANAGER_H_ | 9 #define COMPONENTS_INVALIDATION_REGISTRATION_MANAGER_H_ |
10 | 10 |
11 #include <map> | 11 #include <map> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/threading/non_thread_safe.h" | 14 #include "base/threading/non_thread_safe.h" |
15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
16 #include "base/timer/timer.h" | 16 #include "base/timer/timer.h" |
17 // For invalidation::InvalidationListener::RegistrationState. | 17 // For invalidation::InvalidationListener::RegistrationState. |
18 #include "components/invalidation/invalidation_export.h" | 18 #include "components/invalidation/invalidation_export.h" |
| 19 #include "components/invalidation/invalidation_util.h" |
19 #include "google/cacheinvalidation/include/invalidation-listener.h" | 20 #include "google/cacheinvalidation/include/invalidation-listener.h" |
20 #include "google/cacheinvalidation/include/types.h" | 21 #include "google/cacheinvalidation/include/types.h" |
21 #include "sync/internal_api/public/base/invalidation_util.h" | |
22 | 22 |
23 namespace syncer { | 23 namespace syncer { |
24 | 24 |
25 using ::invalidation::InvalidationListener; | 25 using ::invalidation::InvalidationListener; |
26 | 26 |
27 // Manages the details of registering types for invalidation. | 27 // Manages the details of registering types for invalidation. |
28 // Implements exponential backoff for repeated registration attempts | 28 // Implements exponential backoff for repeated registration attempts |
29 // to the invalidation client. | 29 // to the invalidation client. |
30 // | 30 // |
31 // TODO(akalin): Consolidate exponential backoff code. Other | 31 // TODO(akalin): Consolidate exponential backoff code. Other |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 RegistrationStatusMap registration_statuses_; | 179 RegistrationStatusMap registration_statuses_; |
180 // Weak pointer. | 180 // Weak pointer. |
181 invalidation::InvalidationClient* invalidation_client_; | 181 invalidation::InvalidationClient* invalidation_client_; |
182 | 182 |
183 DISALLOW_COPY_AND_ASSIGN(RegistrationManager); | 183 DISALLOW_COPY_AND_ASSIGN(RegistrationManager); |
184 }; | 184 }; |
185 | 185 |
186 } // namespace syncer | 186 } // namespace syncer |
187 | 187 |
188 #endif // COMPONENTS_INVALIDATION_REGISTRATION_MANAGER_H_ | 188 #endif // COMPONENTS_INVALIDATION_REGISTRATION_MANAGER_H_ |
OLD | NEW |