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.
If you find these projects useful please consider becoming a sponsor with Patreon, GitHub or Liberapay.

Update to CEF 84.3.7

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

Update to CEF 84.3.7

Post by salvadordf »

Hi,

CEF4Delhi has been updated to CEF 84.3.7.

These are the relevant changes in CEF : These are the CEF binaries :
dilfich
Posts: 368
Joined: Thu Nov 30, 2017 1:17 am

Re: Update to CEF 84.3.7

Post 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);
User avatar
salvadordf
Posts: 4575
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Update to CEF 84.3.7

Post 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
Post Reply