chromium/chrome/browser/controlled_frame/controlled_frame_dialog_browsertest.cc

// 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.

#include <optional>
#include <string>
#include <utility>

#include "chrome/browser/controlled_frame/controlled_frame_permission_request_test_base.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace controlled_frame {

class ControlledFrameDialogBrowserTest
    : public ControlledFrameTestBase,
      public testing::WithParamInterface<bool> {};

IN_PROC_BROWSER_TEST_P(ControlledFrameDialogBrowserTest, Confirm) {}

IN_PROC_BROWSER_TEST_P(ControlledFrameDialogBrowserTest, Prompt) {}

IN_PROC_BROWSER_TEST_P(ControlledFrameDialogBrowserTest, Alert) {}

INSTANTIATE_TEST_SUITE_P();

}  // namespace controlled_frame