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_TICL_INVALIDATION_SERVICE_H_ | 5 #ifndef COMPONENTS_INVALIDATION_IMPL_TICL_INVALIDATION_SERVICE_H_ |
6 #define COMPONENTS_INVALIDATION_TICL_INVALIDATION_SERVICE_H_ | 6 #define COMPONENTS_INVALIDATION_IMPL_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_handler.h" | 17 #include "components/invalidation/impl/invalidation_logger.h" |
18 #include "components/invalidation/invalidation_logger.h" | 18 #include "components/invalidation/impl/invalidator_registrar.h" |
19 #include "components/invalidation/invalidation_service.h" | 19 #include "components/invalidation/impl/ticl_settings_provider.h" |
20 #include "components/invalidation/invalidator_registrar.h" | 20 #include "components/invalidation/public/invalidation_handler.h" |
21 #include "components/invalidation/ticl_settings_provider.h" | 21 #include "components/invalidation/public/invalidation_service.h" |
22 #include "components/keyed_service/core/keyed_service.h" | 22 #include "components/keyed_service/core/keyed_service.h" |
23 #include "google_apis/gaia/identity_provider.h" | 23 #include "google_apis/gaia/identity_provider.h" |
24 #include "google_apis/gaia/oauth2_token_service.h" | 24 #include "google_apis/gaia/oauth2_token_service.h" |
25 #include "net/base/backoff_entry.h" | 25 #include "net/base/backoff_entry.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 { |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 | 158 |
159 // Keep a copy of the important parameters used in network channel creation | 159 // Keep a copy of the important parameters used in network channel creation |
160 // for debugging. | 160 // for debugging. |
161 base::DictionaryValue network_channel_options_; | 161 base::DictionaryValue network_channel_options_; |
162 | 162 |
163 DISALLOW_COPY_AND_ASSIGN(TiclInvalidationService); | 163 DISALLOW_COPY_AND_ASSIGN(TiclInvalidationService); |
164 }; | 164 }; |
165 | 165 |
166 } // namespace invalidation | 166 } // namespace invalidation |
167 | 167 |
168 #endif // COMPONENTS_INVALIDATION_TICL_INVALIDATION_SERVICE_H_ | 168 #endif // COMPONENTS_INVALIDATION_IMPL_TICL_INVALIDATION_SERVICE_H_ |
OLD | NEW |