| 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_GCM_DRIVER_GCM_DRIVER_DESKTOP_H_ | 5 #ifndef COMPONENTS_GCM_DRIVER_GCM_DRIVER_DESKTOP_H_ |
| 6 #define COMPONENTS_GCM_DRIVER_GCM_DRIVER_DESKTOP_H_ | 6 #define COMPONENTS_GCM_DRIVER_GCM_DRIVER_DESKTOP_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "components/gcm_driver/gcm_connection_observer.h" | 22 #include "components/gcm_driver/gcm_connection_observer.h" |
| 23 #include "components/gcm_driver/gcm_driver.h" | 23 #include "components/gcm_driver/gcm_driver.h" |
| 24 | 24 |
| 25 class PrefService; | 25 class PrefService; |
| 26 | 26 |
| 27 namespace base { | 27 namespace base { |
| 28 class FilePath; | 28 class FilePath; |
| 29 class SequencedTaskRunner; | 29 class SequencedTaskRunner; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace extensions { | |
| 33 class ExtensionGCMAppHandlerTest; | |
| 34 } | |
| 35 | |
| 36 namespace net { | 32 namespace net { |
| 37 class URLRequestContextGetter; | 33 class URLRequestContextGetter; |
| 38 } | 34 } |
| 39 | 35 |
| 40 namespace gcm { | 36 namespace gcm { |
| 41 | 37 |
| 42 class GCMAccountMapper; | 38 class GCMAccountMapper; |
| 43 class GCMAppHandler; | 39 class GCMAppHandler; |
| 44 class GCMClientFactory; | 40 class GCMClientFactory; |
| 45 class GCMDelayedTaskController; | 41 class GCMDelayedTaskController; |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 236 |
| 241 // Used to pass a weak pointer to the IO worker. | 237 // Used to pass a weak pointer to the IO worker. |
| 242 base::WeakPtrFactory<GCMDriverDesktop> weak_ptr_factory_; | 238 base::WeakPtrFactory<GCMDriverDesktop> weak_ptr_factory_; |
| 243 | 239 |
| 244 DISALLOW_COPY_AND_ASSIGN(GCMDriverDesktop); | 240 DISALLOW_COPY_AND_ASSIGN(GCMDriverDesktop); |
| 245 }; | 241 }; |
| 246 | 242 |
| 247 } // namespace gcm | 243 } // namespace gcm |
| 248 | 244 |
| 249 #endif // COMPONENTS_GCM_DRIVER_GCM_DRIVER_DESKTOP_H_ | 245 #endif // COMPONENTS_GCM_DRIVER_GCM_DRIVER_DESKTOP_H_ |
| OLD | NEW |