chore: Dont de-init deferred backup tasks when granting quits for PGO tests, b=no-bug, c=no-component

This commit is contained in:
mr. m
2026-01-11 21:28:06 +01:00
parent 0bfac990d2
commit 21821c31d2
2 changed files with 0 additions and 7 deletions

View File

@@ -7,5 +7,4 @@ category browser-before-ui-startup resource:///modules/zen/ZenSessionManager.sys
category browser-before-ui-startup resource:///modules/zen/ZenWindowSync.sys.mjs ZenWindowSync.init
# App shutdown consumers
category browser-quit-application-granted resource:///modules/zen/ZenSessionManager.sys.mjs ZenSessionStore.uninit
category browser-quit-application-granted resource:///modules/zen/ZenWindowSync.sys.mjs ZenWindowSync.uninit

View File

@@ -93,12 +93,6 @@ export class nsZenSessionManager {
}, REGENERATION_DEBOUNCE_RATE_MS);
}
uninit() {
this.log('Uninitializing session manager');
this.#deferredBackupTask?.disarm();
this.#deferredBackupTask = null;
}
log(...args) {
if (lazy.gShouldLog) {
console.info('ZenSessionManager:', ...args);