CEF4Delphi/source/uCEFAuthCallback.pas
salvadordf ca8bc9dff4 Added cef4delphi.chm help file
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
2023-08-09 19:38:57 +02:00

55 lines
1.1 KiB
ObjectPascal

unit uCEFAuthCallback;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
{$I cef.inc}
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
{$MINENUMSIZE 4}
interface
uses
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
type
TCefAuthCallbackRef = class(TCefBaseRefCountedRef, ICefAuthCallback)
protected
procedure Cont(const username, password: ustring);
procedure Cancel;
public
class function UnWrap(data: Pointer): ICefAuthCallback;
end;
implementation
uses
uCEFMiscFunctions, uCEFLibFunctions;
procedure TCefAuthCallbackRef.Cancel;
begin
PCefAuthCallback(FData)^.cancel(PCefAuthCallback(FData));
end;
procedure TCefAuthCallbackRef.Cont(const username, password: ustring);
var
TempUsername, TempPassword : TCefString;
begin
TempUsername := CefString(username);
TempPassword := CefString(password);
PCefAuthCallback(FData)^.cont(PCefAuthCallback(FData), @TempUsername, @TempPassword);
end;
class function TCefAuthCallbackRef.UnWrap(data: Pointer): ICefAuthCallback;
begin
if (data <> nil) then
Result := Create(data) as ICefAuthCallback
else
Result := nil;
end;
end.