[tor-commits] [Git][tpo/applications/mullvad-browser][mullvad-browser-128.2.0esr-14.0-1] 2 commits: fixup! Bug 41568: Disable LaterRun
Pier Angelo Vendrame (@pierov)
git at gitlab.torproject.org
Thu Aug 29 14:43:15 UTC 2024
Pier Angelo Vendrame pushed to branch mullvad-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser
Commits:
e4de0ac8 by Henry Wilkes at 2024-08-29T16:42:57+02:00
fixup! Bug 41568: Disable LaterRun
Bug 42630: Revert patch.
- - - - -
ae50f625 by Henry Wilkes at 2024-08-29T16:42:58+02:00
Bug 42630: Disable LaterRun module.
- - - - -
2 changed files:
- browser/components/BrowserContentHandler.sys.mjs
- browser/modules/LaterRun.sys.mjs
Changes:
=====================================
browser/components/BrowserContentHandler.sys.mjs
=====================================
@@ -774,8 +774,8 @@ nsBrowserContentHandler.prototype = {
additionalPage = Services.urlFormatter.formatURLPref(
"startup.homepage_welcome_url.additional"
);
- // Disable 'later run' pages for new profiles (tor-browser#41568)
- lazy.LaterRun.selfDestruct();
+ // Turn on 'later run' pages for new profiles.
+ lazy.LaterRun.enable(lazy.LaterRun.ENABLE_REASON_NEW_PROFILE);
break;
case OVERRIDE_NEW_MSTONE: {
// Check whether we will restore a session. If we will, we assume
=====================================
browser/modules/LaterRun.sys.mjs
=====================================
@@ -61,6 +61,20 @@ export let LaterRun = {
},
init(reason) {
+ // Keep disabled in Base Browser. See tor-browser#41568.
+ // NOTE: This means that users cannot benefit from feature prompts gated
+ // behind LaterRun.
+ // In mozilla ESR 128 it is only used in one place, and is gated behind a
+ // feature recommendation preference that we switch off in Base Browser
+ // anyway. See tor-browser#42630.
+ // But this decision should be reviewed. See tor-browser#43093.
+ Services.prefs.setBoolPref(kEnabledPref, false);
+ // Clear any preferences that may have been set before LaterRun was
+ // disabled.
+ Services.prefs.clearUserPref(kSessionCountPref);
+ Services.prefs.clearUserPref(kProfileCreationTime);
+ Services.prefs.clearUserPref(kUpdateAppliedTime);
+
if (!this.enabled) {
return;
}
@@ -99,11 +113,8 @@ export let LaterRun = {
return Services.prefs.getBoolPref(kEnabledPref, false);
},
- enable(reason) {
- if (!this.enabled) {
- Services.prefs.setBoolPref(kEnabledPref, true);
- this.init(reason);
- }
+ enable(_reason) {
+ // Keep disabled in Base Browser. See tor-browser#41568.
},
get hoursSinceInstall() {
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/0716201098ebd250423b3b72469c2a8e2ff94b68...ae50f625c274d4cbce2144adf80ccc23d40faedf
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/0716201098ebd250423b3b72469c2a8e2ff94b68...ae50f625c274d4cbce2144adf80ccc23d40faedf
You're receiving this email because of your account on gitlab.torproject.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.torproject.org/pipermail/tor-commits/attachments/20240829/67623873/attachment-0001.htm>
More information about the tor-commits
mailing list