Page 1 of 1
Update to CEF 84.3.7
Posted: Fri Jul 24, 2020 9:26 am
by salvadordf
Hi,
CEF4Delhi has been updated to CEF 84.3.7.
These are the relevant changes in CEF :
These are the CEF binaries :
Re: Update to CEF 84.3.7
Posted: Fri Jul 24, 2020 11:49 am
by dilfich
Ohhh, how many updates)
The question is not at version
OK
Code: Select all
TempManager.DeleteCookies('https://www.briskbard.com', 'param', nil);
And so deletes everything, it probably isn't correct or so it should be?
Code: Select all
TempManager.DeleteCookies('www.briskbard.com', 'param', nil);
Re: Update to CEF 84.3.7
Posted: Fri Jul 24, 2020 12:01 pm
by salvadordf
These are the code comments for ICefCookieManager.DeleteCookies :
https://github.com/chromiumembedded/cef ... api.h#L113
Code: Select all
///
// Delete all cookies that match the specified parameters. If both |url| and
// |cookie_name| values are specified all host and domain cookies matching
// both will be deleted. If only |url| is specified all host cookies (but not
// domain cookies) irrespective of path will be deleted. If |url| is NULL all
// cookies for all hosts and domains will be deleted. If |callback| is non-
// NULL it will be executed asnychronously on the UI thread after the cookies
// have been deleted. Returns false (0) if a non-NULL invalid URL is specified
// or if cookies cannot be accessed. Cookies can alternately be deleted using
// the Visit*Cookies() functions.
///
You can also try a cookie visitor in the CookieVisitor demo or the new DevTools method called "
Network.deleteCookies" :
https://chromedevtools.github.io/devtoo ... eteCookies