50 lines
2.0 KiB
Diff
50 lines
2.0 KiB
Diff
|
From: uazo <uazo@users.noreply.github.com>
|
||
|
Date: Thu, 28 Sep 2023 08:11:00 +0000
|
||
|
Subject: Keep disabled FetchLaterAPI
|
||
|
|
||
|
---
|
||
|
third_party/blink/common/features.cc | 8 ++++----
|
||
|
.../renderer/platform/runtime_enabled_features.json5 | 3 ++-
|
||
|
2 files changed, 6 insertions(+), 5 deletions(-)
|
||
|
|
||
|
diff --git a/third_party/blink/common/features.cc b/third_party/blink/common/features.cc
|
||
|
--- a/third_party/blink/common/features.cc
|
||
|
+++ b/third_party/blink/common/features.cc
|
||
|
@@ -1026,8 +1026,8 @@ BASE_FEATURE(kKalmanHeuristics,
|
||
|
base::FEATURE_DISABLED_BY_DEFAULT);
|
||
|
|
||
|
BASE_FEATURE(kKeepAliveInBrowserMigration,
|
||
|
- "KeepAliveInBrowserMigration",
|
||
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
||
|
+ "KeepAliveInBrowserMigration", // keep
|
||
|
+ base::FEATURE_DISABLED_BY_DEFAULT); // disabled
|
||
|
|
||
|
// Enables reporting as LCP of the time the first frame of an animated image was
|
||
|
// painted.
|
||
|
@@ -1278,8 +1278,8 @@ BASE_FEATURE(kPath2DPaintCache,
|
||
|
base::FEATURE_DISABLED_BY_DEFAULT);
|
||
|
|
||
|
BASE_FEATURE(kPendingBeaconAPI,
|
||
|
- "PendingBeaconAPI",
|
||
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
||
|
+ "PendingBeaconAPI", // keep
|
||
|
+ base::FEATURE_DISABLED_BY_DEFAULT); // disabled
|
||
|
const base::FeatureParam<bool> kPendingBeaconAPIRequiresOriginTrial = {
|
||
|
&kPendingBeaconAPI, "requires_origin_trial", false};
|
||
|
const base::FeatureParam<bool> kPendingBeaconAPIForcesSendingOnNavigation = {
|
||
|
diff --git a/third_party/blink/renderer/platform/runtime_enabled_features.json5 b/third_party/blink/renderer/platform/runtime_enabled_features.json5
|
||
|
--- a/third_party/blink/renderer/platform/runtime_enabled_features.json5
|
||
|
+++ b/third_party/blink/renderer/platform/runtime_enabled_features.json5
|
||
|
@@ -1700,7 +1700,8 @@
|
||
|
},
|
||
|
{
|
||
|
// The Blink runtime-enabled feature name for the API's IDL.
|
||
|
- name: "FetchLaterAPI",
|
||
|
+ name: "FetchLaterAPI", // disable
|
||
|
+ status: "experimental", // by default
|
||
|
public: true,
|
||
|
},
|
||
|
{
|
||
|
--
|
||
|
2.25.1
|