Page 1 of 1
Update to CEF 83.3.12
Posted: Sat Jun 06, 2020 9:40 am
by salvadordf
Hi,
CEF4Delphi is now updated to CEF 83.3.12 which includes Chromium 83.0.4103.97
These are the CEF binaries :
Re: Update to CEF 83.3.12
Posted: Tue Jun 09, 2020 11:53 am
by w1ld32
[dcc32 Error] uCEFCookieManager.pas(60): E2291 Missing implementation of interface method ICefCookieManager.SetCookie
[dcc32 Error] uCEFCookieManager.pas(60): E2291 Missing implementation of interface method ICefCookieManager.SetCookieProc
[dcc32 Fatal Error] uCEFCookieManager.pas(498): F2063 Could not compile used unit 'uCEFDeleteCookiesCallback.pas'
How fix this problem?
Re: Update to CEF 83.3.12
Posted: Wed Jun 10, 2020 9:29 am
by salvadordf
Hi,
The cookies, the cookie visitor and the cookie manager had some changes recently.
Those errors can be caused by old BPL or DCU files.
Follow these steps to install CEF4Delphi :
https://www.briskbard.com/forum/viewtop ... =772#p3481
Re: Update to CEF 83.3.12
Posted: Tue Jun 16, 2020 9:07 am
by dilfich
Demo MiniBrowser
If you remove it Chromium1.DefaultURL := MINIBROWSER_HOMEPAGE;
And try to open it chrome://version/
The program crashes, this has never happened before.
On the other hand, if you do this, there is no mistake.
Chromium1.DefaultURL:= 'chrome://version/';
What went wrong?
Re: Update to CEF 83.3.12
Posted: Tue Jun 16, 2020 9:40 am
by salvadordf
I've also detected that issue in the beta version of BriskBard but right now I'm very busy.
I'll take a look as soon as I can.
Re: Update to CEF 83.3.12
Posted: Wed Jun 17, 2020 9:18 am
by dilfich
It doesn't work either(
go url -
https://www.briskbard.com/index.php?lang=en
Code: Select all
if (Pos( 'briskbard.com/images/logo.', request.Url) <> 0) then begin
u.scheme:= 'https';
u.host := 'www.google.com';
u.origin := 'https://www.google.com/';
u.path := '/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png';
u.query := '';
request.Url := CefCreateUrl(u);
end;
Has something changed or is it a bug?
Re: Update to CEF 83.3.12
Posted: Sat Jun 20, 2020 1:56 pm
by salvadordf
I could reproduce the "
chrome://version" issue with the official CEF application.
I created an issue in the CEF project :
https://bitbucket.org/chromiumembedded/ ... me-version
Re: Update to CEF 83.3.12
Posted: Sun Jun 21, 2020 5:58 am
by dilfich
This is not the only problem (
When modifying the link via TUrlParts, the app also crashes, not just the function doesn't work.
Perhaps this is somehow related.
Re: Update to CEF 83.3.12
Posted: Sun Jun 21, 2020 4:21 pm
by salvadordf
There is a bug in CefCreateUrl that will be fixed in the next CEF4Delphi version.
Thanks!
