42 lines
2.1 KiB
Diff
42 lines
2.1 KiB
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Sun, 31 Jul 2022 22:13:11 +0200
|
|
Subject: Disable PrivacyGuide
|
|
|
|
License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html
|
|
---
|
|
chrome/common/chrome_features.cc | 12 ++++++------
|
|
1 file changed, 6 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
|
|
--- a/chrome/common/chrome_features.cc
|
|
+++ b/chrome/common/chrome_features.cc
|
|
@@ -444,8 +444,8 @@ const base::Feature kHaTSDesktopDevToolsIssuesCSP{
|
|
|
|
// Enables or disables the Happiness Tracking System for Desktop Privacy Guide.
|
|
const base::Feature kHappinessTrackingSurveysForDesktopPrivacyGuide{
|
|
- "HappinessTrackingSurveysForDesktopPrivacyGuide",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT};
|
|
+ "HappinessTrackingSurveysForDesktopPrivacyGuide", // must be disabled
|
|
+ base::FEATURE_DISABLED_BY_DEFAULT}; // in Bromite
|
|
const base::FeatureParam<base::TimeDelta>
|
|
kHappinessTrackingSurveysForDesktopPrivacyGuideTime{
|
|
&kHappinessTrackingSurveysForDesktopPrivacyGuide, "settings-time",
|
|
@@ -777,11 +777,11 @@ const base::Feature kPredictivePrefetchingAllowedOnAllConnectionTypes{
|
|
const base::Feature kPrerenderFallbackToPreconnect{
|
|
"PrerenderFallbackToPreconnect", base::FEATURE_ENABLED_BY_DEFAULT};
|
|
|
|
-const base::Feature kPrivacyGuide2{"PrivacyGuide2",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT};
|
|
+const base::Feature kPrivacyGuide2{"PrivacyGuide2", // always disabled
|
|
+ base::FEATURE_DISABLED_BY_DEFAULT}; // in Bromite
|
|
|
|
-const base::Feature kPrivacyGuideAndroid{"PrivacyGuideAndroid",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT};
|
|
+const base::Feature kPrivacyGuideAndroid{"PrivacyGuideAndroid", // always disabled
|
|
+ base::FEATURE_DISABLED_BY_DEFAULT}; // in Bromite
|
|
|
|
// Enables or disables push subscriptions keeping Chrome running in the
|
|
// background when closed.
|
|
--
|
|
2.25.1
|