Merge pull request #17507 from electron/chromium-upgrade/75

chore: update to chromium 75.0.3740.3
This commit is contained in:
Samuel Attard 2019-04-03 13:17:37 -07:00 committed by GitHub
commit 5d45b59f7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
74 changed files with 597 additions and 398 deletions

View file

@ -303,8 +303,12 @@ void SetCookieOnIO(scoped_refptr<net::URLRequestContextGetter> getter,
EXCLUDE_FAILURE_TO_STORE);
return;
}
net::CookieOptions options;
if (http_only) {
options.set_include_httponly();
}
GetCookieStore(getter)->SetCanonicalCookieAsync(
std::move(canonical_cookie), url.scheme(), http_only,
std::move(canonical_cookie), url.scheme(), options,
std::move(completion_callback));
}