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
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, 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.
|