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.
If you find these projects useful please consider becoming a sponsor with Patreon, GitHub or Liberapay.

Update to CEF 76.1.13

Post Reply
User avatar
salvadordf
Posts: 4565
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Update to CEF 76.1.13

Post 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 :
dilfich
Posts: 368
Joined: Thu Nov 30, 2017 1:17 am

Re: Update to CEF 76.1.13

Post 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
User avatar
salvadordf
Posts: 4565
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Update to CEF 76.1.13

Post 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
dilfich
Posts: 368
Joined: Thu Nov 30, 2017 1:17 am

Re: Update to CEF 76.1.13

Post 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?
User avatar
salvadordf
Posts: 4565
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Update to CEF 76.1.13

Post 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.
dilfich
Posts: 368
Joined: Thu Nov 30, 2017 1:17 am

Re: Update to CEF 76.1.13

Post 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. :?
User avatar
salvadordf
Posts: 4565
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Update to CEF 76.1.13

Post by salvadordf »

I don't know. I don't work for Google and it's the first time I see that message.
Post Reply