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 128.4.8
This commit is contained in:
@@ -112,8 +112,6 @@ type
|
||||
function GetVisibleNavigationEntry : ICefNavigationEntry;
|
||||
procedure SetAccessibilityState(accessibilityState: TCefState);
|
||||
procedure SetAutoResizeEnabled(enabled: boolean; const min_size, max_size: PCefSize);
|
||||
function GetExtension : ICefExtension;
|
||||
function IsBackgroundHost : boolean;
|
||||
procedure SetAudioMuted(mute: boolean);
|
||||
function IsAudioMuted : boolean;
|
||||
function IsFullscreen : boolean;
|
||||
@@ -132,7 +130,7 @@ implementation
|
||||
uses
|
||||
uCEFMiscFunctions, uCEFLibFunctions, uCEFDownloadImageCallBack, uCEFFrame, uCEFPDFPrintCallback,
|
||||
uCEFRunFileDialogCallback, uCEFRequestContext, uCEFNavigationEntryVisitor, uCEFNavigationEntry,
|
||||
uCEFExtension, uCEFStringList, uCEFRegistration, uCEFClient;
|
||||
uCEFStringList, uCEFRegistration, uCEFClient;
|
||||
|
||||
|
||||
// TCefBrowserRef
|
||||
@@ -335,16 +333,6 @@ begin
|
||||
PCefBrowserHost(FData)^.set_auto_resize_enabled(PCefBrowserHost(FData), Ord(enabled), min_size, max_size);
|
||||
end;
|
||||
|
||||
function TCefBrowserHostRef.GetExtension : ICefExtension;
|
||||
begin
|
||||
Result := TCefExtensionRef.UnWrap(PCefBrowserHost(FData)^.get_extension(PCefBrowserHost(FData)));
|
||||
end;
|
||||
|
||||
function TCefBrowserHostRef.IsBackgroundHost : boolean;
|
||||
begin
|
||||
Result := PCefBrowserHost(FData)^.is_background_host(PCefBrowserHost(FData)) <> 0;
|
||||
end;
|
||||
|
||||
procedure TCefBrowserHostRef.SetAudioMuted(mute: boolean);
|
||||
begin
|
||||
PCefBrowserHost(FData)^.set_audio_muted(PCefBrowserHost(FData), Ord(mute));
|
||||
|
||||
Reference in New Issue
Block a user