// Copyright 2017 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_TASK_TASK_TEST_BASE_H_ #define COMPONENTS_OFFLINE_PAGES_TASK_TASK_TEST_BASE_H_ #include "base/task/single_thread_task_runner.h" #include "base/test/task_environment.h" #include "components/offline_pages/task/task.h" #include "testing/gtest/include/gtest/gtest.h" namespace offline_pages { // Base class for testing prefetch requests with simulated responses. class TaskTestBase : public testing::Test { … }; } // namespace offline_pages #endif // COMPONENTS_OFFLINE_PAGES_TASK_TASK_TEST_BASE_H_