You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2026-05-16 08:38:08 +02:00
55 lines
1.1 KiB
ObjectPascal
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;
|
|
|
|
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.
|