Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_OFFLINE_PAGES_BACKGROUND_GET_REQUESTS_TASK_H_ | |
| 6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_GET_REQUESTS_TASK_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "base/memory/weak_ptr.h" | |
| 12 #include "components/offline_pages/background/request_queue_store.h" | |
| 13 #include "components/offline_pages/core/task.h" | |
| 14 | |
| 15 namespace offline_pages { | |
| 16 | |
| 17 class GetRequestsTask : public Task { | |
| 18 public: | |
| 19 GetRequestsTask(RequestQueueStore* store, | |
| 20 const RequestQueueStore::GetRequestsCallback& callback); | |
| 21 ~GetRequestsTask() override; | |
| 22 | |
| 23 // Task implementation: | |
| 24 void Run() override; | |
| 25 | |
| 26 private: | |
| 27 // Step 1: Read the reqests fromt he store. | |
|
dougarnett
2016/11/28 18:48:41
from
fgorski
2016/11/28 19:14:56
Done.
| |
| 28 void ReadRequest(); | |
|
Pete Williamson
2016/11/28 21:13:51
Good change, I like the idea of Step 1 having its
| |
| 29 // Step 2: Calls the callback with result, completes the task. | |
| 30 void CompleteWithResult( | |
| 31 bool success, | |
| 32 std::vector<std::unique_ptr<SavePageRequest>> requests); | |
| 33 | |
| 34 // Store from which requests will be read. | |
| 35 RequestQueueStore* store_; | |
| 36 // Callback used to return the read results. | |
| 37 RequestQueueStore::GetRequestsCallback callback_; | |
| 38 | |
| 39 base::WeakPtrFactory<GetRequestsTask> weak_ptr_factory_; | |
| 40 DISALLOW_COPY_AND_ASSIGN(GetRequestsTask); | |
| 41 }; | |
| 42 | |
| 43 } // namespace offline_pages | |
| 44 | |
| 45 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_GET_REQUESTS_TASK_H_ | |
| OLD | NEW |