OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CHROME_BROWSER_INVALIDATION_TICL_INVALIDATION_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_INVALIDATION_TICL_INVALIDATION_SERVICE_H_ |
6 #define CHROME_BROWSER_INVALIDATION_TICL_INVALIDATION_SERVICE_H_ | 6 #define CHROME_BROWSER_INVALIDATION_TICL_INVALIDATION_SERVICE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/threading/non_thread_safe.h" | 14 #include "base/threading/non_thread_safe.h" |
15 #include "base/timer/timer.h" | 15 #include "base/timer/timer.h" |
16 #include "base/values.h" | 16 #include "base/values.h" |
17 #include "components/invalidation/invalidation_logger.h" | 17 #include "components/invalidation/invalidation_logger.h" |
18 #include "components/invalidation/invalidation_service.h" | 18 #include "components/invalidation/invalidation_service.h" |
19 #include "components/invalidation/invalidator_registrar.h" | |
20 #include "components/invalidation/ticl_settings_provider.h" | 19 #include "components/invalidation/ticl_settings_provider.h" |
21 #include "components/keyed_service/core/keyed_service.h" | 20 #include "components/keyed_service/core/keyed_service.h" |
22 #include "google_apis/gaia/identity_provider.h" | 21 #include "google_apis/gaia/identity_provider.h" |
23 #include "google_apis/gaia/oauth2_token_service.h" | 22 #include "google_apis/gaia/oauth2_token_service.h" |
24 #include "net/base/backoff_entry.h" | 23 #include "net/base/backoff_entry.h" |
25 #include "sync/notifier/invalidation_handler.h" | 24 #include "sync/notifier/invalidation_handler.h" |
| 25 #include "sync/notifier/invalidator_registrar.h" |
26 | 26 |
27 namespace gcm { | 27 namespace gcm { |
28 class GCMDriver; | 28 class GCMDriver; |
29 } | 29 } |
30 | 30 |
31 namespace net { | 31 namespace net { |
32 class URLRequestContextGetter; | 32 class URLRequestContextGetter; |
33 } | 33 } |
34 | 34 |
35 namespace syncer { | 35 namespace syncer { |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 // Keep a copy of the important parameters used in network channel creation | 163 // Keep a copy of the important parameters used in network channel creation |
164 // for debugging. | 164 // for debugging. |
165 base::DictionaryValue network_channel_options_; | 165 base::DictionaryValue network_channel_options_; |
166 | 166 |
167 DISALLOW_COPY_AND_ASSIGN(TiclInvalidationService); | 167 DISALLOW_COPY_AND_ASSIGN(TiclInvalidationService); |
168 }; | 168 }; |
169 | 169 |
170 } // namespace invalidation | 170 } // namespace invalidation |
171 | 171 |
172 #endif // CHROME_BROWSER_INVALIDATION_TICL_INVALIDATION_SERVICE_H_ | 172 #endif // CHROME_BROWSER_INVALIDATION_TICL_INVALIDATION_SERVICE_H_ |
OLD | NEW |