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 83.3.9

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

Update to CEF 83.3.9

Post by salvadordf »

Hi,

CEF4Delphi is now updated to CEF 83.3.9 which includes Chromium 83.0.4103.61 :)

The CEF project added the audio handler again and now TChromium has the events triggered by that handler :
  • TChromium.OnGetAudioParameters
  • TChromium.OnAudioStreamStarted
  • TChromium.OnAudioStreamPacket
  • TChromium.OnAudioStreamStopped
  • TChromium.OnAudioStreamError
WARNING :
TCefCookie and TCookie were also updated in CEF and now you can specify "same_site" and "priority" values.
This may break your applications if you use those types, call cookie related functions or use events for cookies!!!

same_site can have the following values defined in uCEFTypes.pas :
  • CEF_COOKIE_SAME_SITE_UNSPECIFIED
  • CEF_COOKIE_SAME_SITE_NO_RESTRICTION
  • CEF_COOKIE_SAME_SITE_LAX_MODE
  • CEF_COOKIE_SAME_SITE_STRICT_MODE
priority can have the following values defined in uCEFConstants.pas :
  • CEF_COOKIE_PRIORITY_LOW
  • CEF_COOKIE_PRIORITY_MEDIUM
  • CEF_COOKIE_PRIORITY_HIGH
These are the CEF binaries :
User avatar
salvadordf
Posts: 4016
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Update to CEF 83.3.9

Post by salvadordf »

I forgot to add that the CEF documentation is not updated yet but you can read all the details about the audio handler in the CEF source code :
https://github.com/chromiumembedded/cef ... ler_capi.h
Post Reply