// Copyright 2018 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_TEST_REQUEST_QUEUE_STORE_H_ #define COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_TEST_REQUEST_QUEUE_STORE_H_ #include "base/test/test_mock_time_task_runner.h" #include "components/offline_pages/core/background/request_queue_store.h" namespace offline_pages { // Wraps RequestQueueStore for easy use in tests. Stores data in memory and // provides additional testing functionality. class TestRequestQueueStore : public RequestQueueStore { … }; } // namespace offline_pages #endif // COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_TEST_REQUEST_QUEUE_STORE_H_