Skip to content
Snippets Groups Projects
Commit 316d736b authored by Dan Ballard's avatar Dan Ballard Committed by Pier Angelo Vendrame
Browse files

TB 43006: Disable RFP for Font Visibility on Android

parent b511f9fc
Branches
No related tags found
1 merge request!1500TB 43415: Rebased onto 134.0a1
......@@ -16820,6 +16820,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