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 :
Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
Update to CEF 76.1.13
- salvadordf
- Posts: 4565
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Update to CEF 76.1.13
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
Correctly
ID [0]: 12884901891
ID [1]: 12884901892
ID [2]: 12884901895
Incorrectly
ID [0]: 12884901895
ID [1]: 12884901891
ID [2]: 12884901892
- salvadordf
- Posts: 4565
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Update to CEF 76.1.13
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
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
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?
What does this error mean and how not to get rid of it?
- salvadordf
- Posts: 4565
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Update to CEF 76.1.13
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 :
It seems to show that message when Chromium can't find a previous entry for that origin, realm and scheme.
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).
Re: Update to CEF 76.1.13
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.
What is the point of this message if nothing can be done.

- salvadordf
- Posts: 4565
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Update to CEF 76.1.13
I don't know. I don't work for Google and it's the first time I see that message.