commit 6f57fc92161112489c1708f9ebe0c1da97ea72a8
parent 3fa641112e10e4c0f512e7d75f05f53b14622c05
Author: Ted Campbell <tcampbell@mozilla.com>
Date: Mon, 1 Dec 2025 18:54:50 +0000
Bug 2001685: Fix ifdef condition for fission.autostart on android. r=kaya
We were using `IS_EARLY_BETA_OR_EARLIER` with an ifdef but when false it
is still defined. Use `EARLY_BETA_OR_EARLIER` instead here. This affects
late beta builds.
Differential Revision: https://phabricator.services.mozilla.com/D274621
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/libpref/init/StaticPrefList.yaml b/modules/libpref/init/StaticPrefList.yaml
@@ -6150,7 +6150,7 @@
# whether fission is enabled by default.
- name: fission.autostart
type: bool
-#if defined(MOZ_WIDGET_ANDROID) && !defined(IS_EARLY_BETA_OR_EARLIER)
+#if defined(MOZ_WIDGET_ANDROID) && !defined(EARLY_BETA_OR_EARLIER)
value: false
#else
value: true
@@ -6161,7 +6161,7 @@
# over IPC from the child processes.
- name: fission.disableSessionHistoryInParent
type: bool
-#if defined(MOZ_WIDGET_ANDROID) && !defined(IS_EARLY_BETA_OR_EARLIER)
+#if defined(MOZ_WIDGET_ANDROID) && !defined(EARLY_BETA_OR_EARLIER)
value: true
#else
value: false