Skip to content
Snippets Groups Projects
Commit f19da14f authored by Dan Ballard's avatar Dan Ballard Committed by Beatriz Rizental
Browse files

TB 43006: Disable RFP for Font Visibility on Android

parent 45e77e42
Branches
No related tags found
1 merge request!1527Bug 43808: Rebase 128.10.1 onto 128.11
......@@ -16403,6 +16403,12 @@ bool Document::RecomputeResistFingerprinting() {
}
 
bool Document::ShouldResistFingerprinting(RFPTarget aTarget) const {
#ifdef ANDROID
if (aTarget == RFPTarget::FontVisibilityBaseSystem ||
aTarget == RFPTarget::FontVisibilityLangPack) {
return false;
}
#endif
return mShouldResistFingerprinting &&
nsRFPService::IsRFPEnabledFor(this->IsInPrivateBrowsing(), aTarget,
mOverriddenFingerprintingSettings);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment