// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_OFFLINER_STUB_H_ #define COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_OFFLINER_STUB_H_ #include <memory> #include "base/functional/callback_forward.h" #include "base/time/time.h" #include "components/offline_pages/core/background/offliner.h" namespace offline_pages { // Test class stubbing out the functionality of Offliner. // It is only used for test support. class OfflinerStub : public Offliner { … }; } // namespace offline_pages #endif // COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_OFFLINER_STUB_H_