#include "content/public/test/content_browser_test.h"
#include "base/check_op.h"
#include "base/command_line.h"
#include "base/files/file.h"
#include "base/files/file_util.h"
#include "base/path_service.h"
#include "base/run_loop.h"
#include "base/task/current_thread.h"
#include "build/build_config.h"
#include "build/chromecast_buildflags.h"
#include "build/chromeos_buildflags.h"
#include "content/browser/renderer_host/render_frame_host_impl.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/common/content_paths.h"
#include "content/public/common/content_switches.h"
#include "content/public/common/url_constants.h"
#include "content/public/test/content_browser_test_content_browser_client.h"
#include "content/public/test/test_browser_context.h"
#include "content/shell/browser/shell.h"
#include "content/shell/browser/shell_browser_context.h"
#include "content/shell/browser/shell_paths.h"
#include "content/shell/common/shell_switches.h"
#include "content/test/test_content_client.h"
#include "ui/events/platform/platform_event_source.h"
#if BUILDFLAG(IS_MAC)
#include "base/apple/foundation_util.h"
#include "content/shell/app/paths_mac.h"
#endif
#if BUILDFLAG(IS_CHROMEOS_LACROS) || BUILDFLAG(IS_LINUX)
#include "ui/base/ime/init/input_method_initializer.h"
#endif
#if BUILDFLAG(IS_CHROMEOS)
#include "content/public/test/network_connection_change_simulator.h"
#endif
#if defined(USE_AURA) && defined(TOOLKIT_VIEWS)
#include "ui/views/test/widget_test_api.h"
#endif
namespace content {
ContentBrowserTest::ContentBrowserTest() { … }
ContentBrowserTest::~ContentBrowserTest() { … }
void ContentBrowserTest::SetUp() { … }
void ContentBrowserTest::TearDown() { … }
void ContentBrowserTest::PreRunTestOnMainThread() { … }
void ContentBrowserTest::PostRunTestOnMainThread() { … }
Shell* ContentBrowserTest::CreateBrowser() { … }
Shell* ContentBrowserTest::CreateOffTheRecordBrowser() { … }
std::unique_ptr<TestBrowserContext>
ContentBrowserTest::CreateTestBrowserContext() { … }
base::FilePath ContentBrowserTest::GetTestDataFilePath() { … }
}