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
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
- CEF_COOKIE_PRIORITY_LOW
- CEF_COOKIE_PRIORITY_MEDIUM
- CEF_COOKIE_PRIORITY_HIGH