blob: 60ab867b57c62193af5e8aaef247082886f686d7 [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_TEST_BASE_PLATFORM_BROWSER_TEST_H_
#define CHROME_TEST_BASE_PLATFORM_BROWSER_TEST_H_
#include "build/build_config.h"
#if BUILDFLAG(IS_ANDROID)
#include "chrome/test/base/android/android_browser_test.h"
#else
#include "chrome/test/base/in_process_browser_test.h"
#endif
// PlatformBrowserTest is aliased to either AndroidBrowserTest or
// InProcessBrowserTest, depending on the platform.
// Further details and methodology can be found in the design doc:
// https://docs.google.com/document/d/1jT3W6VnVI4b0FuiNbYzgGZPxIOUZmppUZZwi3OebvVE/preview
#if BUILDFLAG(IS_ANDROID)
using PlatformBrowserTest = AndroidBrowserTest;
#else
using PlatformBrowserTest = InProcessBrowserTest;
#endif
#endif // CHROME_TEST_BASE_PLATFORM_BROWSER_TEST_H_