| 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_ADD_REQUEST_TASK_H_ | 5 #ifndef COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_ADD_REQUEST_TASK_H_ |
| 6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_ADD_REQUEST_TASK_H_ | 6 #define COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_ADD_REQUEST_TASK_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "components/offline_pages/background/request_queue_store.h" | 12 #include "components/offline_pages/core/background/request_queue_store.h" |
| 13 #include "components/offline_pages/core/task.h" | 13 #include "components/offline_pages/core/task.h" |
| 14 | 14 |
| 15 namespace offline_pages { | 15 namespace offline_pages { |
| 16 | 16 |
| 17 class AddRequestTask : public Task { | 17 class AddRequestTask : public Task { |
| 18 public: | 18 public: |
| 19 AddRequestTask(RequestQueueStore* store, | 19 AddRequestTask(RequestQueueStore* store, |
| 20 const SavePageRequest& request, | 20 const SavePageRequest& request, |
| 21 const RequestQueueStore::AddCallback& callback); | 21 const RequestQueueStore::AddCallback& callback); |
| 22 ~AddRequestTask() override; | 22 ~AddRequestTask() override; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 36 SavePageRequest request_; | 36 SavePageRequest request_; |
| 37 // Callback used to return the read results. | 37 // Callback used to return the read results. |
| 38 RequestQueueStore::AddCallback callback_; | 38 RequestQueueStore::AddCallback callback_; |
| 39 | 39 |
| 40 base::WeakPtrFactory<AddRequestTask> weak_ptr_factory_; | 40 base::WeakPtrFactory<AddRequestTask> weak_ptr_factory_; |
| 41 DISALLOW_COPY_AND_ASSIGN(AddRequestTask); | 41 DISALLOW_COPY_AND_ASSIGN(AddRequestTask); |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 } // namespace offline_pages | 44 } // namespace offline_pages |
| 45 | 45 |
| 46 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_ADD_REQUEST_TASK_H_ | 46 #endif // COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_ADD_REQUEST_TASK_H_ |
| OLD | NEW |