diff --git a/demos/Delphi_FMX/SimpleFMXBrowser/uSimpleFMXBrowser.pas b/demos/Delphi_FMX/SimpleFMXBrowser/uSimpleFMXBrowser.pas index bad10c46..fac57018 100644 --- a/demos/Delphi_FMX/SimpleFMXBrowser/uSimpleFMXBrowser.pas +++ b/demos/Delphi_FMX/SimpleFMXBrowser/uSimpleFMXBrowser.pas @@ -153,7 +153,7 @@ begin //GlobalCEFApp.LogFile := 'cef.log'; //GlobalCEFApp.LogSeverity := LOGSEVERITY_VERBOSE; - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. // If you don't set a cache directory the browser will use in-memory cache. { GlobalCEFApp.FrameworkDirPath := 'cef'; diff --git a/demos/Delphi_VCL/ConsoleBrowser/OSRDLLBrowser.dpr b/demos/Delphi_VCL/ConsoleBrowser/OSRDLLBrowser.dpr index da4703a0..ff773b6a 100644 --- a/demos/Delphi_VCL/ConsoleBrowser/OSRDLLBrowser.dpr +++ b/demos/Delphi_VCL/ConsoleBrowser/OSRDLLBrowser.dpr @@ -94,7 +94,7 @@ procedure InitializeCEF4Delphi; stdcall; begin GlobalCEFApp := TCefApplication.Create; - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. // If you don't set a cache directory the browser will use in-memory cache. // The cache, cookies and user data directories must be writable. { diff --git a/demos/Delphi_VCL/ConsoleBrowser/OSRSubProcess.dpr b/demos/Delphi_VCL/ConsoleBrowser/OSRSubProcess.dpr index c2db2d8e..646cdd77 100644 --- a/demos/Delphi_VCL/ConsoleBrowser/OSRSubProcess.dpr +++ b/demos/Delphi_VCL/ConsoleBrowser/OSRSubProcess.dpr @@ -62,7 +62,7 @@ begin // The demos are compiled into the BIN directory. Make sure SubProcess.exe and SimpleBrowser.exe are in that // directory or this demo won't work. - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. { GlobalCEFApp.FrameworkDirPath := 'cef'; GlobalCEFApp.ResourcesDirPath := 'cef'; diff --git a/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser.dpr b/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser.dpr index cfd07552..c4324c93 100644 --- a/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser.dpr +++ b/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser.dpr @@ -57,7 +57,7 @@ uses begin GlobalCEFApp := TCefApplication.Create; - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. // If you don't set a cache directory the browser will use in-memory cache. { GlobalCEFApp.FrameworkDirPath := 'cef'; @@ -65,7 +65,6 @@ begin GlobalCEFApp.LocalesDirPath := 'cef\locales'; GlobalCEFApp.EnableGPU := True; // Enable hardware acceleration GlobalCEFApp.cache := 'cef\cache'; - GlobalCEFApp.cookies := 'cef\cookies'; GlobalCEFApp.UserDataPath := 'cef\User Data'; } diff --git a/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser_D7.dpr b/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser_D7.dpr index 2b4b4cbd..4ad180da 100644 --- a/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser_D7.dpr +++ b/demos/Delphi_VCL/SimpleBrowser/SimpleBrowser_D7.dpr @@ -53,14 +53,13 @@ uses begin GlobalCEFApp := TCefApplication.Create; - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. { GlobalCEFApp.FrameworkDirPath := 'cef'; GlobalCEFApp.ResourcesDirPath := 'cef'; GlobalCEFApp.LocalesDirPath := 'cef\locales'; GlobalCEFApp.cache := 'cef\cache'; - GlobalCEFApp.cookies := 'cef\cookies'; GlobalCEFApp.UserDataPath := 'cef\User Data'; } diff --git a/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2.dpr b/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2.dpr index fea0d449..9cdca1d7 100644 --- a/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2.dpr +++ b/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2.dpr @@ -59,7 +59,7 @@ uses begin GlobalCEFApp := TCefApplication.Create; - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. // If you don't set a cache directory the browser will use in-memory cache. { GlobalCEFApp.FrameworkDirPath := 'cef'; diff --git a/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2_D7.dpr b/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2_D7.dpr index d09068bd..f0c976d2 100644 --- a/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2_D7.dpr +++ b/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2_D7.dpr @@ -53,14 +53,13 @@ uses begin GlobalCEFApp := TCefApplication.Create; - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. { GlobalCEFApp.FrameworkDirPath := 'cef'; GlobalCEFApp.ResourcesDirPath := 'cef'; GlobalCEFApp.LocalesDirPath := 'cef\locales'; GlobalCEFApp.cache := 'cef\cache'; - GlobalCEFApp.cookies := 'cef\cookies'; GlobalCEFApp.UserDataPath := 'cef\User Data'; } diff --git a/demos/Delphi_VCL/SubProcess/SubProcess.dpr b/demos/Delphi_VCL/SubProcess/SubProcess.dpr index 9278ae11..531af3c2 100644 --- a/demos/Delphi_VCL/SubProcess/SubProcess.dpr +++ b/demos/Delphi_VCL/SubProcess/SubProcess.dpr @@ -57,13 +57,13 @@ begin // The main process and the subprocess *MUST* have the same GlobalCEFApp // properties and events, specially FrameworkDirPath, ResourcesDirPath, - // LocalesDirPath, cache, cookies and UserDataPath paths. + // LocalesDirPath, cache and UserDataPath paths. // The demos are compiled into the BIN directory. Make sure SubProcess.exe // and SimpleBrowser.exe are in that directory or this demo won't work. - // In case you want to use custom directories for the CEF3 binaries, cache, - // cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache + // and user data. { GlobalCEFApp.FrameworkDirPath := 'cef'; GlobalCEFApp.ResourcesDirPath := 'cef'; diff --git a/demos/Delphi_VCL/SubProcess/uCEFLoader.pas b/demos/Delphi_VCL/SubProcess/uCEFLoader.pas index 92e9c2dd..42998641 100644 --- a/demos/Delphi_VCL/SubProcess/uCEFLoader.pas +++ b/demos/Delphi_VCL/SubProcess/uCEFLoader.pas @@ -54,15 +54,14 @@ procedure CreateGlobalCEFApp; begin GlobalCEFApp := TCefApplication.Create; - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. // If you don't set a cache directory the browser will use in-memory cache. - // The cache, cookies and user data directories must be writable. + // The cache and user data directories must be writable. { GlobalCEFApp.FrameworkDirPath := 'cef'; GlobalCEFApp.ResourcesDirPath := 'cef'; GlobalCEFApp.LocalesDirPath := 'cef\locales'; GlobalCEFApp.cache := 'cef\cache'; - GlobalCEFApp.cookies := 'cef\cookies'; GlobalCEFApp.UserDataPath := 'cef\User Data'; } diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lps b/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lps index 1a996bd2..bd0f37b8 100644 --- a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lps +++ b/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lps @@ -9,7 +9,7 @@ - + diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lpr b/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lpr index 02c4643a..ad508c31 100644 --- a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lpr +++ b/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lpr @@ -73,12 +73,12 @@ begin GlobalCEFApp.DisableFeatures := 'NetworkService,OutOfBlinkCors'; // The main process and the subprocess *MUST* have the same FrameworkDirPath, ResourcesDirPath, - // LocalesDirPath, cache, cookies and UserDataPath paths + // LocalesDirPath, cache and UserDataPath paths // The demos are compiled into the BIN directory. Make sure SubProcess.exe and JSSimpleWindowBinding.exe are in that // directory or this demo won't work. - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. { GlobalCEFApp.FrameworkDirPath := 'cef'; GlobalCEFApp.ResourcesDirPath := 'cef'; diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lps b/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lps index 30cd8cde..1ba57d36 100644 --- a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lps +++ b/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lps @@ -9,8 +9,8 @@ - - + + diff --git a/demos/Lazarus/SimpleBrowser/SimpleBrowser.lps b/demos/Lazarus/SimpleBrowser/SimpleBrowser.lps index e19983b0..83330504 100644 --- a/demos/Lazarus/SimpleBrowser/SimpleBrowser.lps +++ b/demos/Lazarus/SimpleBrowser/SimpleBrowser.lps @@ -23,7 +23,7 @@ - + diff --git a/demos/Lazarus/SimpleBrowser/uSimpleBrowser.lfm b/demos/Lazarus/SimpleBrowser/uSimpleBrowser.lfm index 40d2fdf0..8cf4b3c1 100644 --- a/demos/Lazarus/SimpleBrowser/uSimpleBrowser.lfm +++ b/demos/Lazarus/SimpleBrowser/uSimpleBrowser.lfm @@ -14,7 +14,7 @@ object Form1: TForm1 OnCreate = FormCreate OnShow = FormShow Position = poScreenCenter - LCLVersion = '2.0.2.0' + LCLVersion = '2.0.4.0' object ChromiumWindow1: TChromiumWindow Left = 0 Height = 603 diff --git a/demos/Lazarus/SimpleBrowser/uSimpleBrowser.pas b/demos/Lazarus/SimpleBrowser/uSimpleBrowser.pas index a0605165..1d378928 100644 --- a/demos/Lazarus/SimpleBrowser/uSimpleBrowser.pas +++ b/demos/Lazarus/SimpleBrowser/uSimpleBrowser.pas @@ -122,7 +122,7 @@ begin GlobalCEFApp := TCefApplication.Create; GlobalCEFApp.DisableFeatures := 'NetworkService,OutOfBlinkCors'; - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. { GlobalCEFApp.FrameworkDirPath := 'cef'; GlobalCEFApp.ResourcesDirPath := 'cef'; diff --git a/demos/Lazarus/SubProcess/SimpleBrowser.lps b/demos/Lazarus/SubProcess/SimpleBrowser.lps index 3641acdc..86976546 100644 --- a/demos/Lazarus/SubProcess/SimpleBrowser.lps +++ b/demos/Lazarus/SubProcess/SimpleBrowser.lps @@ -8,8 +8,9 @@ - - + + + @@ -21,7 +22,7 @@ - + @@ -31,10 +32,9 @@ - - + diff --git a/demos/Lazarus/SubProcess/SubProcess.lpr b/demos/Lazarus/SubProcess/SubProcess.lpr index f5604331..0efffaae 100644 --- a/demos/Lazarus/SubProcess/SubProcess.lpr +++ b/demos/Lazarus/SubProcess/SubProcess.lpr @@ -55,13 +55,13 @@ begin // The main process and the subprocess *MUST* have the same GlobalCEFApp // properties and events, specially FrameworkDirPath, ResourcesDirPath, - // LocalesDirPath, cache, cookies and UserDataPath paths. + // LocalesDirPath, cache and UserDataPath paths. // The demos are compiled into the BIN directory. Make sure SubProcess.exe // and SimpleBrowser.exe are in that directory or this demo won't work. - // In case you want to use custom directories for the CEF3 binaries, cache, - // cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache + // and user data. { GlobalCEFApp.FrameworkDirPath := 'cef'; GlobalCEFApp.ResourcesDirPath := 'cef'; diff --git a/demos/Lazarus/SubProcess/SubProcess.lps b/demos/Lazarus/SubProcess/SubProcess.lps index a277aa5d..f74a68ca 100644 --- a/demos/Lazarus/SubProcess/SubProcess.lps +++ b/demos/Lazarus/SubProcess/SubProcess.lps @@ -10,7 +10,7 @@ - + diff --git a/demos/Lazarus/SubProcess/uCEFLoader.pas b/demos/Lazarus/SubProcess/uCEFLoader.pas index 2da45897..42998641 100644 --- a/demos/Lazarus/SubProcess/uCEFLoader.pas +++ b/demos/Lazarus/SubProcess/uCEFLoader.pas @@ -54,9 +54,9 @@ procedure CreateGlobalCEFApp; begin GlobalCEFApp := TCefApplication.Create; - // In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data. + // In case you want to use custom directories for the CEF3 binaries, cache and user data. // If you don't set a cache directory the browser will use in-memory cache. - // The cache, cookies and user data directories must be writable. + // The cache and user data directories must be writable. { GlobalCEFApp.FrameworkDirPath := 'cef'; GlobalCEFApp.ResourcesDirPath := 'cef'; diff --git a/update_CEF4Delphi.json b/update_CEF4Delphi.json index 79029014..e3e2787b 100644 --- a/update_CEF4Delphi.json +++ b/update_CEF4Delphi.json @@ -2,7 +2,7 @@ "UpdateLazPackages" : [ { "ForceNotify" : true, - "InternalVersion" : 29, + "InternalVersion" : 30, "Name" : "cef4delphi_lazarus.lpk", "Version" : "76.1.13.0" }