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_PICK_REQUEST_TASK_FACTORY_H_ | |
6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_PICK_REQUEST_TASK_FACTORY_H_ | |
7 | |
8 #include <stdint.h> | |
9 | |
10 #include <set> | |
11 | |
12 #include "components/offline_pages/background/pick_request_task.h" | |
13 | |
14 namespace offline_pages { | |
15 | |
16 class OfflinerPolicy; | |
17 class RequestCoordinatorEventLogger; | |
18 class RequestNotifier; | |
19 class RequestQueueStore; | |
20 | |
21 class PickRequestTaskFactory { | |
22 public: | |
23 PickRequestTaskFactory(OfflinerPolicy* policy, | |
24 RequestNotifier* notifier, | |
25 RequestCoordinatorEventLogger* event_logger); | |
26 | |
27 ~PickRequestTaskFactory(); | |
28 | |
29 std::unique_ptr<PickRequestTask> CreatePickerTask( | |
30 RequestQueueStore* store, | |
31 const PickRequestTask::RequestPickedCallback& picked_callback, | |
32 const PickRequestTask::RequestNotPickedCallback& not_picked_callback, | |
33 const PickRequestTask::RequestCountCallback& request_count_callback, | |
34 DeviceConditions& conditions, | |
35 std::set<int64_t>& disabled_requests); | |
36 | |
37 private: | |
38 // Unowned pointer to the Policy | |
39 OfflinerPolicy* policy_; | |
40 // Unowned pointer to the notifier | |
41 RequestNotifier* notifier_; | |
42 // Unowned pointer to the EventLogger | |
43 RequestCoordinatorEventLogger* event_logger_; | |
44 }; | |
45 | |
46 } // namespace offline_pages | |
47 | |
48 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_PICK_REQUEST_TASK_FACTORY_H_ | |
OLD | NEW |