diff --git a/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser.dpr b/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser.dpr index e38ab19a..cfd07552 100644 --- a/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser.dpr +++ b/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser.dpr @@ -69,6 +69,9 @@ begin GlobalCEFApp.UserDataPath := 'cef\User Data'; } + // Disabling some features to improve stability + GlobalCEFApp.DisableFeatures := 'NetworkService,OutOfBlinkCors'; + // You *MUST* call GlobalCEFApp.StartMainProcess in a if..then clause // with the Application initialization inside the begin..end. // Read this https://www.briskbard.com/index.php?lang=en&pageid=cef diff --git a/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2.dpr b/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2.dpr index ef7ad465..fea0d449 100644 --- a/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2.dpr +++ b/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2.dpr @@ -70,6 +70,9 @@ begin GlobalCEFApp.UserDataPath := 'cef\User Data'; } + // Disabling some features to improve stability + GlobalCEFApp.DisableFeatures := 'NetworkService,OutOfBlinkCors'; + // You *MUST* call GlobalCEFApp.StartMainProcess in a if..then clause // with the Application initialization inside the begin..end. // Read this https://www.briskbard.com/index.php?lang=en&pageid=cef