mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 134.0.6998.0 (#1415337)
This commit is contained in:
@@ -37,8 +37,13 @@ bool GetCookieDomain(const GURL& url,
|
||||
domain_string = pc.Domain();
|
||||
}
|
||||
net::CookieInclusionStatus status;
|
||||
return net::cookie_util::GetCookieDomainWithString(url, domain_string, status,
|
||||
result);
|
||||
const auto& retval =
|
||||
net::cookie_util::GetCookieDomainWithString(url, domain_string, status);
|
||||
if (retval.has_value()) {
|
||||
*result = *retval;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
cef_cookie_same_site_t MakeCefCookieSameSite(net::CookieSameSite value) {
|
||||
|
Reference in New Issue
Block a user