You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2026-04-23 01:13:01 +02:00
42 lines
847 B
ObjectPascal
42 lines
847 B
ObjectPascal
unit uCEFResourceReadCallback;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE OBJFPC}{$H+}
|
|
{$ENDIF}
|
|
|
|
{$I cef.inc}
|
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
{$MINENUMSIZE 4}
|
|
|
|
interface
|
|
|
|
uses
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
|
|
|
type
|
|
TCefResourceReadCallbackRef = class(TCefBaseRefCountedRef, ICefResourceReadCallback)
|
|
protected
|
|
procedure Cont(bytes_read: int64);
|
|
|
|
public
|
|
class function UnWrap(data: Pointer): ICefResourceReadCallback;
|
|
end;
|
|
|
|
implementation
|
|
|
|
procedure TCefResourceReadCallbackRef.Cont(bytes_read: int64);
|
|
begin
|
|
PCefResourceReadCallback(FData)^.cont(PCefResourceReadCallback(FData), bytes_read);
|
|
end;
|
|
|
|
class function TCefResourceReadCallbackRef.UnWrap(data: Pointer): ICefResourceReadCallback;
|
|
begin
|
|
if (data <> nil) then
|
|
Result := Create(data) as ICefResourceReadCallback
|
|
else
|
|
Result := nil;
|
|
end;
|
|
|
|
end.
|