1
0
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:
Salvador Díaz Fau
2020-04-30 17:28:41 +02:00
parent ee831e85bd
commit ccdb41b357
14 changed files with 615 additions and 80 deletions

View File

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