// 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 HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_ #define HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_ #include <memory> #include "build/build_config.h" #include "content/public/test/browser_test_base.h" #include "headless/public/headless_browser.h" namespace base { class RunLoop; } namespace headless { // Base class for tests which require a full instance of the headless browser. class HeadlessBrowserTest : public content::BrowserTestBase { … }; } // namespace headless #endif // HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_