#include <memory>
#include <string>
#include "base/base_paths.h"
#include "base/files/file_path.h"
#include "base/path_service.h"
#include "base/strings/string_util.h"
#include "base/test/gmock_expected_support.h"
#include "chrome/browser/controlled_frame/controlled_frame_test_base.h"
#include "chrome/browser/controlled_frame/scoped_test_driver_proxy.h"
#include "chrome/browser/ui/web_applications/test/isolated_web_app_test_utils.h"
#include "chrome/browser/web_applications/isolated_web_apps/isolated_web_app_url_info.h"
#include "chrome/browser/web_applications/isolated_web_apps/test/isolated_web_app_builder.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "services/device/public/cpp/test/scoped_geolocation_overrider.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/permissions_policy/policy_helper_public.h"
#include "third_party/blink/public/mojom/permissions_policy/permissions_policy_feature.mojom-shared.h"
namespace controlled_frame {
namespace {
auto kTestFiles = …;
constexpr char kTestDirectory[] = …;
constexpr char kTestHarnessPath[] = …;
constexpr char kTestDriverPath[] = …;
constexpr char kHtmlWrapperSrc[] = …;
constexpr char kWptReporterSrc[] = …;
}
class ControlledFrameWptBrowserTest
: public ControlledFrameTestBase,
public testing::WithParamInterface<std::string> { … };
IN_PROC_BROWSER_TEST_P(ControlledFrameWptBrowserTest, Run) { … }
INSTANTIATE_TEST_SUITE_P(…);
}