I am using CefSharp version 86.0.24, which uses chromium version 86 internally.
Starting V80 chromium has implemented samesite cookie policy due to which third party cookies having no same site and secure attribute are getting blocked using V80 and above.
In standalone chrome browser which is using chromium V88, this is still not enforced due to this flag legacysamesitecookiebehaviorenabled ,which is set at enterprise level.
Is there some flags or a way to suppress this setting in CEF sharp, as it has broke our lot of our application ?
Any help or lead will be appreciated.
One Update : Although we are able to suppress the new same-site cookie policy. But this setting will be removed starting Chromium V93.
See the below notes available on chromium release notes : https://support.google.com/chrome/a/answer/7679408#88&zippy=%2Cchrome
==========================================================================
Chrome 93 will remove LegacySameSiteCookieBehaviorEnabled
When same-site cookie behavior was introduced, Chrome included policies to give admins extra time to adjust the implementation of any enterprise apps that relied on the legacy cookie behavior. The first phase of the transition plan will end in Chrome 93, and LegacySameSiteCookieBehaviorEnabled will no longer take effect. You will still be able to opt specific sites into the legacy cookie behavior using LegacySameSiteCookieBehaviorEnabledForDomainList until December 31st, 2022.
===========================================================================
It is better of fix this rather than adding this flag which will be removed in future.