You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-11-23 21:34:53 +02:00
Added GlobalCEFApp.DisableSiteIsolationTrials property
This commit is contained in:
@@ -137,6 +137,7 @@ type
|
|||||||
FDisableWebSecurity : boolean;
|
FDisableWebSecurity : boolean;
|
||||||
FDisablePDFExtension : boolean;
|
FDisablePDFExtension : boolean;
|
||||||
FLogProcessInfo : boolean;
|
FLogProcessInfo : boolean;
|
||||||
|
FDisableSiteIsolationTrials : boolean;
|
||||||
FEnableFeatures : string;
|
FEnableFeatures : string;
|
||||||
FDisableFeatures : string;
|
FDisableFeatures : string;
|
||||||
FEnableBlinkFeatures : string;
|
FEnableBlinkFeatures : string;
|
||||||
@@ -403,6 +404,7 @@ type
|
|||||||
property SitePerProcess : boolean read FSitePerProcess write FSitePerProcess; // --site-per-process
|
property SitePerProcess : boolean read FSitePerProcess write FSitePerProcess; // --site-per-process
|
||||||
property DisableWebSecurity : boolean read FDisableWebSecurity write FDisableWebSecurity; // --disable-web-security
|
property DisableWebSecurity : boolean read FDisableWebSecurity write FDisableWebSecurity; // --disable-web-security
|
||||||
property DisablePDFExtension : boolean read FDisablePDFExtension write FDisablePDFExtension; // --disable-pdf-extension
|
property DisablePDFExtension : boolean read FDisablePDFExtension write FDisablePDFExtension; // --disable-pdf-extension
|
||||||
|
property DisableSiteIsolationTrials : boolean read FDisableSiteIsolationTrials write FDisableSiteIsolationTrials; //--disable-site-isolation-trials
|
||||||
property DisableExtensions : boolean read FDisableExtensions write FDisableExtensions; // --disable-extensions
|
property DisableExtensions : boolean read FDisableExtensions write FDisableExtensions; // --disable-extensions
|
||||||
property AutoplayPolicy : TCefAutoplayPolicy read FAutoplayPolicy write FAutoplayPolicy; // --autoplay-policy
|
property AutoplayPolicy : TCefAutoplayPolicy read FAutoplayPolicy write FAutoplayPolicy; // --autoplay-policy
|
||||||
property DisableBackgroundNetworking : boolean read FDisableBackgroundNetworking write FDisableBackgroundNetworking; // --disable-background-networking
|
property DisableBackgroundNetworking : boolean read FDisableBackgroundNetworking write FDisableBackgroundNetworking; // --disable-background-networking
|
||||||
@@ -629,6 +631,7 @@ begin
|
|||||||
FSitePerProcess := False;
|
FSitePerProcess := False;
|
||||||
FDisableWebSecurity := False;
|
FDisableWebSecurity := False;
|
||||||
FDisablePDFExtension := False;
|
FDisablePDFExtension := False;
|
||||||
|
FDisableSiteIsolationTrials := False;
|
||||||
FLogProcessInfo := False;
|
FLogProcessInfo := False;
|
||||||
FReRaiseExceptions := False;
|
FReRaiseExceptions := False;
|
||||||
FLibLoaded := False;
|
FLibLoaded := False;
|
||||||
@@ -1627,6 +1630,9 @@ begin
|
|||||||
if FDisablePDFExtension then
|
if FDisablePDFExtension then
|
||||||
commandLine.AppendSwitch('--disable-pdf-extension');
|
commandLine.AppendSwitch('--disable-pdf-extension');
|
||||||
|
|
||||||
|
if FDisableSiteIsolationTrials then
|
||||||
|
commandLine.AppendSwitch('--disable-site-isolation-trials');
|
||||||
|
|
||||||
if FSitePerProcess then
|
if FSitePerProcess then
|
||||||
commandLine.AppendSwitch('--site-per-process');
|
commandLine.AppendSwitch('--site-per-process');
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"UpdateLazPackages" : [
|
"UpdateLazPackages" : [
|
||||||
{
|
{
|
||||||
"ForceNotify" : true,
|
"ForceNotify" : true,
|
||||||
"InternalVersion" : 72,
|
"InternalVersion" : 73,
|
||||||
"Name" : "cef4delphi_lazarus.lpk",
|
"Name" : "cef4delphi_lazarus.lpk",
|
||||||
"Version" : "78.3.9.0"
|
"Version" : "78.3.9.0"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user