CEF4Delphi/source/uCEFAuthCallback.pas

55 lines
1.1 KiB
ObjectPascal
Raw Normal View History

2017-01-27 17:29:37 +01:00
unit uCEFAuthCallback;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
2017-02-05 20:56:46 +01:00
{$I cef.inc}
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
{$MINENUMSIZE 4}
2017-01-27 17:29:37 +01:00
interface
uses
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
2017-01-27 17:29:37 +01:00
type
TCefAuthCallbackRef = class(TCefBaseRefCountedRef, ICefAuthCallback)
2017-01-27 17:29:37 +01:00
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));
2017-01-27 17:29:37 +01:00
end;
procedure TCefAuthCallbackRef.Cont(const username, password: ustring);
var
TempUsername, TempPassword : TCefString;
2017-01-27 17:29:37 +01:00
begin
TempUsername := CefString(username);
TempPassword := CefString(password);
PCefAuthCallback(FData)^.cont(PCefAuthCallback(FData), @TempUsername, @TempPassword);
2017-01-27 17:29:37 +01:00
end;
class function TCefAuthCallbackRef.UnWrap(data: Pointer): ICefAuthCallback;
begin
if (data <> nil) then
Result := Create(data) as ICefAuthCallback
else
2017-01-27 17:29:37 +01:00
Result := nil;
end;
end.