| 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 COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ | 5 #ifndef COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ |
| 6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ | 6 #define COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "components/offline_pages/background/request_queue_store.h" | 14 #include "components/offline_pages/core/background/request_queue_store.h" |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class SequencedTaskRunner; | 17 class SequencedTaskRunner; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace sql { | 20 namespace sql { |
| 21 class Connection; | 21 class Connection; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace offline_pages { | 24 namespace offline_pages { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 // State of the store. | 70 // State of the store. |
| 71 StoreState state_; | 71 StoreState state_; |
| 72 | 72 |
| 73 base::WeakPtrFactory<RequestQueueStoreSQL> weak_ptr_factory_; | 73 base::WeakPtrFactory<RequestQueueStoreSQL> weak_ptr_factory_; |
| 74 DISALLOW_COPY_AND_ASSIGN(RequestQueueStoreSQL); | 74 DISALLOW_COPY_AND_ASSIGN(RequestQueueStoreSQL); |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace offline_pages | 77 } // namespace offline_pages |
| 78 | 78 |
| 79 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ | 79 #endif // COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ |
| OLD | NEW |