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 #ifndef COMPONENTS_INVALIDATION_INVALIDATION_SERVICE_H_ | 5 #ifndef COMPONENTS_INVALIDATION_INVALIDATION_SERVICE_H_ |
6 #define COMPONENTS_INVALIDATION_INVALIDATION_SERVICE_H_ | 6 #define COMPONENTS_INVALIDATION_INVALIDATION_SERVICE_H_ |
7 | 7 |
8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
| 9 #include "sync/internal_api/public/base/invalidation_util.h" |
9 #include "sync/internal_api/public/base/invalidator_state.h" | 10 #include "sync/internal_api/public/base/invalidator_state.h" |
10 #include "sync/notifier/invalidation_util.h" | |
11 | 11 |
12 class IdentityProvider; | 12 class IdentityProvider; |
13 | 13 |
14 namespace syncer { | 14 namespace syncer { |
15 class InvalidationHandler; | 15 class InvalidationHandler; |
16 } // namespace syncer | 16 } // namespace syncer |
17 | 17 |
18 namespace invalidation { | 18 namespace invalidation { |
19 class InvalidationLogger; | 19 class InvalidationLogger; |
20 | 20 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 virtual void RequestDetailedStatus( | 107 virtual void RequestDetailedStatus( |
108 base::Callback<void(const base::DictionaryValue&)> post_caller) const = 0; | 108 base::Callback<void(const base::DictionaryValue&)> post_caller) const = 0; |
109 | 109 |
110 // Returns the identity provider. | 110 // Returns the identity provider. |
111 virtual IdentityProvider* GetIdentityProvider() = 0; | 111 virtual IdentityProvider* GetIdentityProvider() = 0; |
112 }; | 112 }; |
113 | 113 |
114 } // namespace invalidation | 114 } // namespace invalidation |
115 | 115 |
116 #endif // COMPONENTS_INVALIDATION_INVALIDATION_SERVICE_H_ | 116 #endif // COMPONENTS_INVALIDATION_INVALIDATION_SERVICE_H_ |
OLD | NEW |