23 lines
1013 B
Diff
23 lines
1013 B
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Daniel Micay <danielmicay@gmail.com>
|
||
|
Date: Tue, 1 Aug 2017 11:16:11 -0400
|
||
|
Subject: [PATCH] enable dubious Do Not Track feature by default
|
||
|
|
||
|
---
|
||
|
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
|
||
|
index ca97ddcbeab92..de2ab2067a2d2 100644
|
||
|
--- a/components/privacy_sandbox/tracking_protection_prefs.cc
|
||
|
+++ b/components/privacy_sandbox/tracking_protection_prefs.cc
|
||
|
@@ -35,7 +35,7 @@ void RegisterProfilePrefs(PrefRegistrySimple* registry) {
|
||
|
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
|
||
|
registry->RegisterBooleanPref(prefs::kTrackingProtection3pcdEnabled, false);
|
||
|
registry->RegisterBooleanPref(
|
||
|
- prefs::kEnableDoNotTrack, false,
|
||
|
+ prefs::kEnableDoNotTrack, true,
|
||
|
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
|
||
|
}
|
||
|
|