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_OFFLINER_FACTORY_STUB_H_ | |
6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_FACTORY_STUB_H_ | |
7 | |
8 #include <memory> | |
9 | |
10 #include "components/offline_pages/background/offliner_factory.h" | |
11 | |
12 namespace offline_pages { | |
13 | |
14 class OfflinerStub; | |
15 | |
16 // Test class stubbing out the functionality of OfflinerFactory. | |
17 // It is only used for test support. | |
18 class OfflinerFactoryStub : public OfflinerFactory { | |
19 public: | |
20 OfflinerFactoryStub(); | |
21 ~OfflinerFactoryStub() override; | |
22 | |
23 Offliner* GetOffliner(const OfflinerPolicy* policy) override; | |
24 | |
25 private: | |
26 std::unique_ptr<OfflinerStub> offliner_; | |
27 }; | |
28 | |
29 } // namespace offline_pages | |
30 | |
31 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_FACTORY_STUB_H_ | |
OLD | NEW |