blob: c5534b040122dc4c8ace30230e11bf064db10199 [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_PERMISSIONS_IOS_CONTENT_PERMISSION_PROMPT_PERMISSION_DIALOG_DELEGATE_H_
#define COMPONENTS_PERMISSIONS_IOS_CONTENT_PERMISSION_PROMPT_PERMISSION_DIALOG_DELEGATE_H_
#import <UIKit/UIKit.h>
namespace content {
class WebContents;
}
namespace permissions {
class PermissionPromptIOS;
}
@interface PermissionDialogDelegate : NSObject
- (instancetype)initWithPrompt:(permissions::PermissionPromptIOS*)prompt
webContents:(content::WebContents*)webContents;
@end
#endif // COMPONENTS_PERMISSIONS_IOS_CONTENT_PERMISSION_PROMPT_PERMISSION_DIALOG_DELEGATE_H_