27 lines
997 B
Diff
27 lines
997 B
Diff
From: Your Name <you@example.com>
|
|
Date: Tue, 14 Feb 2023 16:29:12 +0000
|
|
Subject: Disable BackForwardCache
|
|
|
|
---
|
|
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
|
|
@@ -92,9 +92,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
|
|
|
|
// Enables reporting ResourceTiming entries for document, who initiated a
|
|
// cancelled navigation in one of their <iframe>.
|
|
--
|
|
2.25.1
|