Bug 1478114 - [1.0] Don't block content trackers by default to match desktop's default behavior. r=rbarker

This commit is contained in:
Eugen Sawin 2018-07-24 21:37:16 +02:00
parent a666ea8a94
commit 24e63c92a6

View File

@ -306,7 +306,11 @@ public final class GeckoRuntimeSettings implements Parcelable {
"network.cookie.lifetime.days", 90);
/* package */ Pref<String> mTrackingProtection = new Pref<String>(
"urlclassifier.trackingTable",
TrackingProtection.buildPrefValue(TrackingProtectionDelegate.CATEGORY_ALL));
TrackingProtection.buildPrefValue(
TrackingProtectionDelegate.CATEGORY_TEST |
TrackingProtectionDelegate.CATEGORY_ANALYTIC |
TrackingProtectionDelegate.CATEGORY_SOCIAL |
TrackingProtectionDelegate.CATEGORY_AD));
/* package */ Pref<Boolean> mConsoleOutput = new Pref<Boolean>(
"geckoview.console.enabled", false);