23 lines
1.0 KiB
Diff
23 lines
1.0 KiB
Diff
From: uazo <uazo@users.noreply.github.com>
|
|
Date: Wed, 29 May 2024 13:49:01 +0000
|
|
Subject: Enable Do-Not-Track by default
|
|
|
|
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
|
|
---
|
|
components/privacy_sandbox/tracking_protection_prefs.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/components/privacy_sandbox/tracking_protection_prefs.cc b/components/privacy_sandbox/tracking_protection_prefs.cc
|
|
--- a/components/privacy_sandbox/tracking_protection_prefs.cc
|
|
+++ b/components/privacy_sandbox/tracking_protection_prefs.cc
|
|
@@ -78,7 +78,7 @@ void RegisterProfilePrefs(PrefRegistrySimple* registry) {
|
|
prefs::kFingerprintingProtectionEnabled, false,
|
|
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
|
|
registry->RegisterBooleanPref(
|
|
- prefs::kEnableDoNotTrack, false,
|
|
+ prefs::kEnableDoNotTrack, true,
|
|
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
|
|
registry->RegisterBooleanPref(prefs::kUserBypass3pcExceptionsMigrated, false);
|
|
registry->RegisterBooleanPref(prefs::kEnableGPC, true);
|
|
--
|