mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 76.0.3809.0 (#665002)
OSR tests will be fixed by a follow-up merge of Viz support (see issue #2575).
This commit is contained in:
committed by
Marshall Greenblatt
parent
5892ffc382
commit
cc0db5f166
@ -35,10 +35,10 @@ index 2b24d1ac1b5b..6577495d87a9 100644
|
||||
base_cache_path.Append(chrome::kCacheDirname);
|
||||
network_context_params->http_cache_max_size =
|
||||
diff --git chrome/browser/profiles/profile.h chrome/browser/profiles/profile.h
|
||||
index e77d8abd6601..88331e9af5e0 100644
|
||||
index 15d2512dbeaa..04a34b73876b 100644
|
||||
--- chrome/browser/profiles/profile.h
|
||||
+++ chrome/browser/profiles/profile.h
|
||||
@@ -321,6 +321,11 @@ class Profile : public content::BrowserContext {
|
||||
@@ -352,6 +352,11 @@ class Profile : public content::BrowserContext {
|
||||
virtual bool ShouldRestoreOldSessionCookies();
|
||||
virtual bool ShouldPersistSessionCookies();
|
||||
|
||||
@ -51,10 +51,10 @@ index e77d8abd6601..88331e9af5e0 100644
|
||||
// itself, if |relative_path| is empty).
|
||||
virtual network::mojom::NetworkContextPtr CreateNetworkContext(
|
||||
diff --git net/cookies/cookie_monster.cc net/cookies/cookie_monster.cc
|
||||
index e7ad8df8817e..68ae3c88d6cc 100644
|
||||
index 5772e2ac6eb7..86053af86f14 100644
|
||||
--- net/cookies/cookie_monster.cc
|
||||
+++ net/cookies/cookie_monster.cc
|
||||
@@ -508,6 +508,25 @@ void CookieMonster::SetCookieableSchemes(
|
||||
@@ -510,6 +510,25 @@ void CookieMonster::SetCookieableSchemes(
|
||||
MaybeRunCookieCallback(std::move(callback), true);
|
||||
}
|
||||
|
||||
@ -81,7 +81,7 @@ index e7ad8df8817e..68ae3c88d6cc 100644
|
||||
void CookieMonster::SetPersistSessionCookies(bool persist_session_cookies) {
|
||||
DCHECK(thread_checker_.CalledOnValidThread());
|
||||
diff --git net/cookies/cookie_monster.h net/cookies/cookie_monster.h
|
||||
index 747b3789374a..d70c75ade666 100644
|
||||
index 9b7dbbe4f644..da5ee7fe3f28 100644
|
||||
--- net/cookies/cookie_monster.h
|
||||
+++ net/cookies/cookie_monster.h
|
||||
@@ -176,6 +176,8 @@ class NET_EXPORT CookieMonster : public CookieStore {
|
||||
@ -94,7 +94,7 @@ index 747b3789374a..d70c75ade666 100644
|
||||
// Enables writing session cookies into the cookie database. If this this
|
||||
// method is called, it must be called before first use of the instance
|
||||
diff --git net/cookies/cookie_store.h net/cookies/cookie_store.h
|
||||
index c1146a9e32f6..da1e54d423a7 100644
|
||||
index d6299f543edd..ac8edd449452 100644
|
||||
--- net/cookies/cookie_store.h
|
||||
+++ net/cookies/cookie_store.h
|
||||
@@ -145,6 +145,11 @@ class NET_EXPORT CookieStore {
|
||||
@ -106,9 +106,9 @@ index c1146a9e32f6..da1e54d423a7 100644
|
||||
+ virtual void AddCookieableSchemes(const std::vector<std::string>& schemes,
|
||||
+ SetCookieableSchemesCallback callback) = 0;
|
||||
+
|
||||
// Returns true if this cookie store is ephemeral, and false if it is backed
|
||||
// by some sort of persistence layer.
|
||||
// TODO(nharper): Remove this method once crbug.com/548423 has been closed.
|
||||
// Reports the estimate of dynamically allocated memory in bytes.
|
||||
virtual void DumpMemoryStats(base::trace_event::ProcessMemoryDump* pmd,
|
||||
const std::string& parent_absolute_name) const;
|
||||
diff --git services/network/cookie_manager.cc services/network/cookie_manager.cc
|
||||
index 8be1b9dea5f7..30f23449ac51 100644
|
||||
--- services/network/cookie_manager.cc
|
||||
@ -132,10 +132,10 @@ index 8be1b9dea5f7..30f23449ac51 100644
|
||||
|
||||
void CookieManager::SetForceKeepSessionState() {
|
||||
diff --git services/network/network_context.cc services/network/network_context.cc
|
||||
index 9d6f7b930e11..c16e5ca90c14 100644
|
||||
index 6082e82d5854..b68b48eda578 100644
|
||||
--- services/network/network_context.cc
|
||||
+++ services/network/network_context.cc
|
||||
@@ -1742,6 +1742,7 @@ URLRequestContextOwner NetworkContext::ApplyContextParamsToBuilder(
|
||||
@@ -1700,6 +1700,7 @@ URLRequestContextOwner NetworkContext::ApplyContextParamsToBuilder(
|
||||
}
|
||||
|
||||
scoped_refptr<SessionCleanupCookieStore> session_cleanup_cookie_store;
|
||||
@ -143,7 +143,7 @@ index 9d6f7b930e11..c16e5ca90c14 100644
|
||||
if (params_->cookie_path) {
|
||||
scoped_refptr<base::SequencedTaskRunner> client_task_runner =
|
||||
base::MessageLoopCurrent::Get()->task_runner();
|
||||
@@ -1769,18 +1770,27 @@ URLRequestContextOwner NetworkContext::ApplyContextParamsToBuilder(
|
||||
@@ -1727,18 +1728,27 @@ URLRequestContextOwner NetworkContext::ApplyContextParamsToBuilder(
|
||||
session_cleanup_cookie_store =
|
||||
base::MakeRefCounted<SessionCleanupCookieStore>(sqlite_store);
|
||||
|
||||
@ -175,10 +175,10 @@ index 9d6f7b930e11..c16e5ca90c14 100644
|
||||
std::make_unique<net::StaticHttpUserAgentSettings>(
|
||||
params_->accept_language, params_->user_agent);
|
||||
diff --git services/network/public/mojom/network_context.mojom services/network/public/mojom/network_context.mojom
|
||||
index 9e29276e0e4c..9d5588efe7cf 100644
|
||||
index 482ec3cd0ba7..d135f0f19046 100644
|
||||
--- services/network/public/mojom/network_context.mojom
|
||||
+++ services/network/public/mojom/network_context.mojom
|
||||
@@ -203,6 +203,9 @@ struct NetworkContextParams {
|
||||
@@ -205,6 +205,9 @@ struct NetworkContextParams {
|
||||
// cookies. Otherwise it should be false.
|
||||
bool persist_session_cookies = false;
|
||||
|
||||
|
Reference in New Issue
Block a user