42 lines
1.8 KiB
Diff
42 lines
1.8 KiB
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Sat, 19 Feb 2022 12:01:33 +0100
|
|
Subject: Disable idle detection
|
|
|
|
License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html
|
|
---
|
|
content/public/common/content_features.cc | 2 +-
|
|
.../blink/renderer/platform/runtime_enabled_features.json5 | 7 +++----
|
|
2 files changed, 4 insertions(+), 5 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
|
|
@@ -448,7 +448,7 @@ BASE_FEATURE(kGreaseUACH, "GreaseUACH", base::FEATURE_ENABLED_BY_DEFAULT);
|
|
// This is intended as a kill switch for the Idle Detection feature. To enable
|
|
// this feature, the experimental web platform features flag should be set,
|
|
// or the site should obtain an Origin Trial token.
|
|
-BASE_FEATURE(kIdleDetection, "IdleDetection", base::FEATURE_ENABLED_BY_DEFAULT);
|
|
+BASE_FEATURE(kIdleDetection, "IdleDetection", base::FEATURE_DISABLED_BY_DEFAULT);
|
|
|
|
// Kill switch for the GetInstalledRelatedApps API.
|
|
BASE_FEATURE(kInstalledApp, "InstalledApp", base::FEATURE_ENABLED_BY_DEFAULT);
|
|
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
|
|
@@ -2075,10 +2075,9 @@
|
|
base_feature: "none",
|
|
},
|
|
{
|
|
- name: "IdleDetection",
|
|
- public: true,
|
|
- status: "stable",
|
|
- base_feature: "none",
|
|
+ name: "IdleDetection", // disabled
|
|
+ public: true, // by
|
|
+ base_feature: "none", // default
|
|
},
|
|
{
|
|
name: "ImplicitRootScroller",
|
|
--
|
|
2.25.1
|