mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
ca8bc9dff4
Added the PDS file to extract the HTML Help files using PasDoc Added more XML documentation Fixed some XML errors. Removed the license copy from the pas units. Updated the LICENSE.md file
45 lines
964 B
ObjectPascal
45 lines
964 B
ObjectPascal
unit uCEFPermissionPromptCallback;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE OBJFPC}{$H+}
|
|
{$ENDIF}
|
|
|
|
{$I cef.inc}
|
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
{$MINENUMSIZE 4}
|
|
|
|
interface
|
|
|
|
uses
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
|
|
|
type
|
|
TCefPermissionPromptCallbackRef = class(TCefBaseRefCountedRef, ICefPermissionPromptCallback)
|
|
protected
|
|
procedure cont(result: TCefPermissionRequestResult);
|
|
|
|
public
|
|
class function UnWrap(data: Pointer): ICefPermissionPromptCallback;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
uCEFMiscFunctions, uCEFLibFunctions;
|
|
|
|
procedure TCefPermissionPromptCallbackRef.cont(result: TCefPermissionRequestResult);
|
|
begin
|
|
PCefPermissionPromptCallback(FData)^.cont(PCefPermissionPromptCallback(FData), result);
|
|
end;
|
|
|
|
class function TCefPermissionPromptCallbackRef.UnWrap(data: Pointer): ICefPermissionPromptCallback;
|
|
begin
|
|
if (data <> nil) then
|
|
Result := Create(data) as ICefPermissionPromptCallback
|
|
else
|
|
Result := nil;
|
|
end;
|
|
|
|
end.
|