commit 14a6763c1bf86c74d6224c8ab150d85053ff30f4
parent 698f93c916eff05501af2b4e694d841d65309b0c
Author: Roger Yang <royang@mozilla.com>
Date: Tue, 2 Dec 2025 20:06:10 +0000
Bug 1958074 - Remove fetch priority Nimbus feature. r=android-reviewers,petru
Differential Revision: https://phabricator.services.mozilla.com/D273091
Diffstat:
2 files changed, 1 insertion(+), 10 deletions(-)
diff --git a/mobile/android/fenix/app/nimbus.fml.yaml b/mobile/android/fenix/app/nimbus.fml.yaml
@@ -737,15 +737,6 @@ features:
type: Int
default: 0
- networking:
- description: Enables networking features
- variables:
- fetchPriorityEnabled:
- description: >
- Enables or disables network.fetchpriority.enabled preference.
- type: Boolean
- default: true
-
networkingBannedPorts:
description: "Networking (Necko) Banned Ports"
variables:
diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/components/Core.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/components/Core.kt
@@ -187,7 +187,7 @@ class Core(
store.state.desktopMode
},
webContentIsolationStrategy = WebContentIsolationStrategy.ISOLATE_HIGH_VALUE,
- fetchPriorityEnabled = FxNimbus.features.networking.value().fetchPriorityEnabled,
+ fetchPriorityEnabled = true,
parallelMarkingEnabled = FxNimbus.features.javascript.value().parallelMarkingEnabled,
certificateTransparencyMode = FxNimbus.features.pki.value().certificateTransparencyMode,
postQuantumKeyExchangeEnabled = FxNimbus.features.pqcrypto.value().postQuantumKeyExchangeEnabled,