#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(…);
}