Bug 1372951 - Turn on tracking throttling for foreground on nightly. r=ehsan

This commit is contained in:
Andreas Farre 2017-06-19 05:37:00 -04:00
parent 0ec1628a5d
commit 1e3c594756

View File

@ -1279,7 +1279,11 @@ pref("dom.min_timeout_value", 4);
pref("dom.min_background_timeout_value", 1000);
// Timeout clamp in ms for tracking timeouts we clamp
// Note that this requires the privacy.trackingprotection.annotate_channels pref to be on in order to have any effect.
#ifdef NIGHTLY_BUILD
pref("dom.min_tracking_timeout_value", 10000);
#else
pref("dom.min_tracking_timeout_value", 4);
#endif
// And for background windows
// Note that this requires the privacy.trackingprotection.annotate_channels pref to be on in order to have any effect.
pref("dom.min_tracking_background_timeout_value", 10000);