mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 74.0.3706.0 (#632463)
This commit is contained in:
@ -40,7 +40,8 @@ class VisitCookiesCallback : public base::RefCounted<VisitCookiesCallback> {
|
||||
CefRefPtr<CefCookieVisitor> visitor)
|
||||
: cookie_store_getter_(cookie_store_getter), visitor_(visitor) {}
|
||||
|
||||
void Run(const net::CookieList& list) {
|
||||
void Run(const net::CookieList& list,
|
||||
const net::CookieStatusList& excluded_list) {
|
||||
CEF_REQUIRE_IOT();
|
||||
|
||||
int total = list.size(), count = 0;
|
||||
@ -591,8 +592,11 @@ void CefCookieManagerImpl::DeleteCookiesInternal(
|
||||
delete_info, base::Bind(DeleteCookiesCallbackImpl, callback));
|
||||
} else {
|
||||
// Delete all matching host and domain cookies.
|
||||
cookie_store->DeleteCookieAsync(
|
||||
url, cookie_name, base::Bind(DeleteCookiesCallbackImpl, callback, -1));
|
||||
net::CookieDeletionInfo delete_info;
|
||||
delete_info.url = url;
|
||||
delete_info.name = cookie_name;
|
||||
cookie_store->DeleteAllMatchingInfoAsync(
|
||||
delete_info, base::Bind(DeleteCookiesCallbackImpl, callback));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user