You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-11-23 21:34:53 +02:00
Update to CEF 81.3.1
This commit is contained in:
@@ -62,8 +62,17 @@ type
|
||||
class function UnWrap(data: Pointer): ICefPanelDelegate;
|
||||
end;
|
||||
|
||||
TCefPanelDelegateOwn = class(TCefViewDelegateOwn, ICefPanelDelegate)
|
||||
public
|
||||
constructor Create; override;
|
||||
end;
|
||||
|
||||
implementation
|
||||
|
||||
// **************************************************************
|
||||
// ******************** TCefPanelDelegateRef ********************
|
||||
// **************************************************************
|
||||
|
||||
class function TCefPanelDelegateRef.UnWrap(data: Pointer): ICefPanelDelegate;
|
||||
begin
|
||||
if (data <> nil) then
|
||||
@@ -72,5 +81,16 @@ begin
|
||||
Result := nil;
|
||||
end;
|
||||
|
||||
// **************************************************************
|
||||
// ******************** TCefPanelDelegateOwn ********************
|
||||
// **************************************************************
|
||||
|
||||
constructor TCefPanelDelegateOwn.Create;
|
||||
begin
|
||||
inherited CreateData(SizeOf(TCefPanelDelegate));
|
||||
|
||||
InitializeCEFMethods;
|
||||
end;
|
||||
|
||||
end.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user