| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_TEST_TEST_BACKGROUND_SYNC_MANAGER_H_ | 5 #ifndef CONTENT_TEST_TEST_BACKGROUND_SYNC_MANAGER_H_ |
| 6 #define CONTENT_TEST_TEST_BACKGROUND_SYNC_MANAGER_H_ | 6 #define CONTENT_TEST_TEST_BACKGROUND_SYNC_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 |
| 10 #include <memory> |
| 9 #include <string> | 11 #include <string> |
| 10 | 12 |
| 11 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 12 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_ptr.h" | |
| 14 #include "content/browser/background_sync/background_sync_manager.h" | 15 #include "content/browser/background_sync/background_sync_manager.h" |
| 15 #include "content/browser/service_worker/service_worker_storage.h" | 16 #include "content/browser/service_worker/service_worker_storage.h" |
| 16 | 17 |
| 17 class GURL; | 18 class GURL; |
| 18 | 19 |
| 19 namespace base { | 20 namespace base { |
| 20 class TimeDelta; | 21 class TimeDelta; |
| 21 } | 22 } |
| 22 | 23 |
| 23 namespace content { | 24 namespace content { |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 DispatchSyncCallback dispatch_sync_callback_; | 146 DispatchSyncCallback dispatch_sync_callback_; |
| 146 base::Closure delayed_task_; | 147 base::Closure delayed_task_; |
| 147 base::TimeDelta delayed_task_delta_; | 148 base::TimeDelta delayed_task_delta_; |
| 148 | 149 |
| 149 DISALLOW_COPY_AND_ASSIGN(TestBackgroundSyncManager); | 150 DISALLOW_COPY_AND_ASSIGN(TestBackgroundSyncManager); |
| 150 }; | 151 }; |
| 151 | 152 |
| 152 } // namespace content | 153 } // namespace content |
| 153 | 154 |
| 154 #endif // CONTENT_TEST_TEST_BACKGROUND_SYNC_MANAGER_H_ | 155 #endif // CONTENT_TEST_TEST_BACKGROUND_SYNC_MANAGER_H_ |
| OLD | NEW |