Page 1 of 1
Update to CEF 76.1.13
Posted: Sat Aug 31, 2019 3:32 pm
by salvadordf
Hi,
This is just a small update to the latest CEF binaries.
The only relevant change is the amount of comments in the JSExtension and JSRTTIExtension demos.
Please, let me know if there's something in those comments explaining the extensions you think it can be improved.
The CEF binaries are these :
Re: Update to CEF 76.1.13
Posted: Mon Sep 30, 2019 9:14 pm
by dilfich
Why is the frame order almost always different?
Correctly
ID [0]: 12884901891
ID [1]: 12884901892
ID [2]: 12884901895
Incorrectly
ID [0]: 12884901895
ID [1]: 12884901891
ID [2]: 12884901892
Re: Update to CEF 76.1.13
Posted: Tue Oct 01, 2019 6:31 pm
by salvadordf
The function that gets the frame IDs is implemented in Chromium. CEF4Delphi only shows you what Chromium returns.
If you need to search for a frame I would suggest you use JavaScript to set the focus on an element inside that frame and then call TChromium.Browser.GetFocusedFrame
Re: Update to CEF 76.1.13
Posted: Wed Oct 02, 2019 9:58 am
by dilfich
WARNING:http_auth_cache.cc(134)] Num auth cache entries reached limit -- evicting
What does this error mean and how not to get rid of it?
Re: Update to CEF 76.1.13
Posted: Wed Oct 02, 2019 10:06 am
by salvadordf
I searched that error message and it's used in this chromium source code file :
https://chromium.googlesource.com/chrom ... h_cache.cc
It has these code comments :
Code: Select all
// Failsafe to prevent unbounded memory growth of the cache.
//
// Data collected in June of 2019 indicate that the eviction rate is at
// around 0.05%. I.e. 0.05% of the time the number of entries in the cache
// exceed kMaxNumRealmEntries. The evicted entry is roughly half an hour old
// (median), and it's been around 25 minutes since its last use (median).
It seems to show that message when Chromium can't find a previous entry for that origin, realm and scheme.
Re: Update to CEF 76.1.13
Posted: Wed Oct 02, 2019 12:23 pm
by dilfich
But that do to not was this messages or this such a feature of or all same in this my guilt?
What is the point of this message if nothing can be done.

Re: Update to CEF 76.1.13
Posted: Wed Oct 02, 2019 4:27 pm
by salvadordf
I don't know. I don't work for Google and it's the first time I see that message.