Page 1 of 1

Update to CEF 83.3.9

Posted: Sat May 23, 2020 1:20 pm
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 :

Re: Update to CEF 83.3.9

Posted: Sat May 23, 2020 1:27 pm
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