26 lines
1.1 KiB
Diff
26 lines
1.1 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
|
|
Change-Id: I56b99c5e4793eb9c41179b22ff7ea24cb44c56ff
|
|
---
|
|
content/public/common/content_features.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
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
|
|
@@ -554,7 +554,7 @@ BASE_FEATURE(kHandleRendererThreadTypeChangesInBrowser,
|
|
// 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);
|
|
|
|
// A feature flag for the memory-backed code cache.
|
|
BASE_FEATURE(kInMemoryCodeCache,
|
|
--
|
|
2.40.1
|
|
|