39 lines
1.7 KiB
Diff
39 lines
1.7 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
|
|
Change-Id: I6c5fa2baf41f43c017857ba660029c7844664aa2
|
|
---
|
|
chrome/common/chrome_features.cc | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 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
|
|
@@ -460,8 +460,8 @@ BASE_FEATURE(kHaTSDesktopDevToolsIssuesCSP,
|
|
|
|
// Enables or disables the Happiness Tracking System for Desktop Privacy Guide.
|
|
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",
|
|
@@ -922,8 +922,8 @@ BASE_FEATURE(kPrerenderFallbackToPreconnect,
|
|
base::FEATURE_ENABLED_BY_DEFAULT);
|
|
|
|
BASE_FEATURE(kPrivacyGuideAndroid,
|
|
- "PrivacyGuideAndroid",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+ "PrivacyGuideAndroid", // always disabled
|
|
+ base::FEATURE_DISABLED_BY_DEFAULT); // in Bromite
|
|
|
|
// Enables or disables push subscriptions keeping Chrome running in the
|
|
// background when closed.
|
|
--
|
|
2.40.1
|
|
|