OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_SERVICE_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_SERVICE_IMPL_H_ |
6 #define CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_SERVICE_IMPL_H_ | 6 #define CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_SERVICE_IMPL_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include "base/id_map.h" | 10 #include "base/id_map.h" |
| 11 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
11 #include "content/browser/background_sync/background_sync_manager.h" | 14 #include "content/browser/background_sync/background_sync_manager.h" |
12 #include "content/common/background_sync_service.mojom.h" | 15 #include "content/common/background_sync_service.mojom.h" |
13 #include "mojo/public/cpp/bindings/binding.h" | 16 #include "mojo/public/cpp/bindings/binding.h" |
14 | 17 |
15 namespace content { | 18 namespace content { |
16 | 19 |
17 class BackgroundSyncContextImpl; | 20 class BackgroundSyncContextImpl; |
18 | 21 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 BackgroundSyncRegistrationHandle::HandleId> active_handles_; | 85 BackgroundSyncRegistrationHandle::HandleId> active_handles_; |
83 | 86 |
84 base::WeakPtrFactory<BackgroundSyncServiceImpl> weak_ptr_factory_; | 87 base::WeakPtrFactory<BackgroundSyncServiceImpl> weak_ptr_factory_; |
85 | 88 |
86 DISALLOW_COPY_AND_ASSIGN(BackgroundSyncServiceImpl); | 89 DISALLOW_COPY_AND_ASSIGN(BackgroundSyncServiceImpl); |
87 }; | 90 }; |
88 | 91 |
89 } // namespace content | 92 } // namespace content |
90 | 93 |
91 #endif // CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_SERVICE_IMPL_H_ | 94 #endif // CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_SERVICE_IMPL_H_ |
OLD | NEW |