mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-03-27 20:20:31 +02:00
Always run TryCloseBrowser in the CEF UI thread
This commit is contained in:
parent
b5e337f36c
commit
aba0ec399c
@ -117,6 +117,7 @@ type
|
|||||||
FHTTPSUpgrade : TCefState;
|
FHTTPSUpgrade : TCefState;
|
||||||
FHSTSPolicyBypassList : ustring;
|
FHSTSPolicyBypassList : ustring;
|
||||||
FCredentialsService : TCefState;
|
FCredentialsService : TCefState;
|
||||||
|
FTryingToCloseBrowser : boolean;
|
||||||
|
|
||||||
{$IFDEF LINUX}
|
{$IFDEF LINUX}
|
||||||
FXDisplay : PXDisplay;
|
FXDisplay : PXDisplay;
|
||||||
@ -694,6 +695,7 @@ type
|
|||||||
procedure doSetAudioMuted(aValue : boolean); virtual;
|
procedure doSetAudioMuted(aValue : boolean); virtual;
|
||||||
procedure doToggleAudioMuted; virtual;
|
procedure doToggleAudioMuted; virtual;
|
||||||
procedure doEnableFocus; virtual;
|
procedure doEnableFocus; virtual;
|
||||||
|
function doTryCloseBrowser : boolean; virtual;
|
||||||
|
|
||||||
function MustCreateAudioHandler : boolean; virtual;
|
function MustCreateAudioHandler : boolean; virtual;
|
||||||
function MustCreateCommandHandler : boolean; virtual;
|
function MustCreateCommandHandler : boolean; virtual;
|
||||||
@ -1741,7 +1743,7 @@ type
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// <para>This property can only be read on the CEF UI thread.</para>
|
/// <para>This property can only be read on the CEF UI thread.</para>
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
property RuntimeStyle : TCefRuntimeStyle read GetRuntimeStyle write SetRuntimeStyle;
|
property RuntimeStyle : TCefRuntimeStyle read GetRuntimeStyle write SetRuntimeStyle;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns a ICefRequestContext instance used by the selected browser.
|
/// Returns a ICefRequestContext instance used by the selected browser.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -3979,6 +3981,7 @@ begin
|
|||||||
FHTTPSUpgrade := STATE_DEFAULT;
|
FHTTPSUpgrade := STATE_DEFAULT;
|
||||||
FHSTSPolicyBypassList := '';
|
FHSTSPolicyBypassList := '';
|
||||||
FCredentialsService := STATE_DEFAULT;
|
FCredentialsService := STATE_DEFAULT;
|
||||||
|
FTryingToCloseBrowser := False;
|
||||||
{$IFDEF LINUX}
|
{$IFDEF LINUX}
|
||||||
FXDisplay := nil;
|
FXDisplay := nil;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
@ -4867,7 +4870,12 @@ end;
|
|||||||
procedure TChromiumCore.CloseBrowser(aForceClose : boolean);
|
procedure TChromiumCore.CloseBrowser(aForceClose : boolean);
|
||||||
begin
|
begin
|
||||||
if Initialized then
|
if Initialized then
|
||||||
Browser.Host.CloseBrowser(aForceClose);
|
begin
|
||||||
|
if (RuntimeStyle <> CEF_RUNTIME_STYLE_ALLOY) then
|
||||||
|
SetBrowserIsClosing(browser.Identifier);
|
||||||
|
|
||||||
|
Browser.Host.CloseBrowser(aForceClose);
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TChromiumCore.CloseAllBrowsers;
|
procedure TChromiumCore.CloseAllBrowsers;
|
||||||
@ -4882,9 +4890,26 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
function TChromiumCore.TryCloseBrowser : boolean;
|
function TChromiumCore.TryCloseBrowser : boolean;
|
||||||
|
var
|
||||||
|
TempTask : ICefTask;
|
||||||
begin
|
begin
|
||||||
if Initialized then
|
if Initialized then
|
||||||
Result := Browser.Host.TryCloseBrowser
|
begin
|
||||||
|
if FTryingToCloseBrowser then
|
||||||
|
Result := False
|
||||||
|
else
|
||||||
|
if CefCurrentlyOn(TID_UI) then
|
||||||
|
Result := doTryCloseBrowser
|
||||||
|
else
|
||||||
|
try
|
||||||
|
Result := False;
|
||||||
|
FTryingToCloseBrowser := True;
|
||||||
|
TempTask := TCefTryCloseBrowserTask.Create(self);
|
||||||
|
CefPostTask(TID_UI, TempTask);
|
||||||
|
finally
|
||||||
|
TempTask := nil;
|
||||||
|
end;
|
||||||
|
end
|
||||||
else
|
else
|
||||||
Result := True;
|
Result := True;
|
||||||
end;
|
end;
|
||||||
@ -5196,7 +5221,8 @@ begin
|
|||||||
if Initialized then
|
if Initialized then
|
||||||
begin
|
begin
|
||||||
TempFrame := Browser.MainFrame;
|
TempFrame := Browser.MainFrame;
|
||||||
if (TempFrame <> nil) and TempFrame.IsValid then TempFrame.LoadRequest(aRequest);
|
if (TempFrame <> nil) and TempFrame.IsValid then
|
||||||
|
TempFrame.LoadRequest(aRequest);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -5692,7 +5718,8 @@ begin
|
|||||||
if Initialized then
|
if Initialized then
|
||||||
begin
|
begin
|
||||||
TempFrame := Browser.MainFrame;
|
TempFrame := Browser.MainFrame;
|
||||||
if (TempFrame <> nil) and TempFrame.IsValid then Result := TempFrame.URL;
|
if (TempFrame <> nil) and TempFrame.IsValid then
|
||||||
|
Result := TempFrame.URL;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -7697,6 +7724,16 @@ begin
|
|||||||
AudioMuted := not(AudioMuted);
|
AudioMuted := not(AudioMuted);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TChromiumCore.doTryCloseBrowser: boolean;
|
||||||
|
begin
|
||||||
|
if Initialized then
|
||||||
|
Result := Browser.Host.TryCloseBrowser
|
||||||
|
else
|
||||||
|
Result := True;
|
||||||
|
|
||||||
|
FTryingToCloseBrowser := False;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TChromiumCore.doEnableFocus;
|
procedure TChromiumCore.doEnableFocus;
|
||||||
begin
|
begin
|
||||||
FCanFocus := True;
|
FCanFocus := True;
|
||||||
|
@ -507,6 +507,7 @@ type
|
|||||||
procedure doSetAudioMuted(aValue : boolean);
|
procedure doSetAudioMuted(aValue : boolean);
|
||||||
procedure doToggleAudioMuted;
|
procedure doToggleAudioMuted;
|
||||||
procedure doEnableFocus;
|
procedure doEnableFocus;
|
||||||
|
function doTryCloseBrowser : boolean;
|
||||||
function MustCreateAudioHandler : boolean;
|
function MustCreateAudioHandler : boolean;
|
||||||
function MustCreateCommandHandler : boolean;
|
function MustCreateCommandHandler : boolean;
|
||||||
function MustCreateLoadHandler : boolean;
|
function MustCreateLoadHandler : boolean;
|
||||||
|
@ -197,6 +197,11 @@ type
|
|||||||
procedure Execute; override;
|
procedure Execute; override;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
TCefTryCloseBrowserTask = class(TCefChromiumTask)
|
||||||
|
protected
|
||||||
|
procedure Execute; override;
|
||||||
|
end;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
uses
|
uses
|
||||||
@ -677,4 +682,22 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
// TCefTryCloseBrowserTask
|
||||||
|
|
||||||
|
procedure TCefTryCloseBrowserTask.Execute;
|
||||||
|
begin
|
||||||
|
try
|
||||||
|
try
|
||||||
|
if CanExecute then
|
||||||
|
IChromiumEvents(FEvents).doTryCloseBrowser;
|
||||||
|
except
|
||||||
|
on e : exception do
|
||||||
|
if CustomExceptionHandler('TCefTryCloseBrowserTask.Execute', e) then raise;
|
||||||
|
end;
|
||||||
|
finally
|
||||||
|
FEvents := nil;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"UpdateLazPackages" : [
|
"UpdateLazPackages" : [
|
||||||
{
|
{
|
||||||
"ForceNotify" : true,
|
"ForceNotify" : true,
|
||||||
"InternalVersion" : 654,
|
"InternalVersion" : 655,
|
||||||
"Name" : "cef4delphi_lazarus.lpk",
|
"Name" : "cef4delphi_lazarus.lpk",
|
||||||
"Version" : "128.4.9"
|
"Version" : "128.4.9"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user