28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From: uazo <uazo@users.noreply.github.com>
|
|
Date: Tue, 14 Feb 2023 16:29:12 +0000
|
|
Subject: Disable BackForwardCache
|
|
|
|
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
|
|
---
|
|
content/public/common/content_features.cc | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc
|
|
--- a/content/public/common/content_features.cc
|
|
+++ b/content/public/common/content_features.cc
|
|
@@ -65,9 +65,9 @@ BASE_FEATURE(kBackgroundFetch,
|
|
base::FEATURE_ENABLED_BY_DEFAULT);
|
|
|
|
// Enable using the BackForwardCache.
|
|
-BASE_FEATURE(kBackForwardCache,
|
|
- "BackForwardCache",
|
|
- base::FEATURE_ENABLED_BY_DEFAULT);
|
|
+BASE_FEATURE(kBackForwardCache, // ****
|
|
+ "BackForwardCache", // always disabled
|
|
+ base::FEATURE_DISABLED_BY_DEFAULT); // in bromite
|
|
|
|
// Enable showing a page preview during back/forward navigations.
|
|
BASE_FEATURE(kBackForwardTransitions,
|
|
--
|
|
2.25.1
|