// Copyright © 2022 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
using System;
namespace CefSharp
{
///
/// Callback interface used for asynchronous continuation of permission prompts.
///
public interface IPermissionPromptCallback : IDisposable
{
///
/// Complete the permissions request with the specified result.
///
/// Permission request results.
void Continue(PermissionRequestResult result);
}
}