forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1789390 - Remove scheduled and Action Center notifications during…
… uninstall. r=nalexander Non-MSIX notifications are not removed when Firefox is uninstalled. To handled this we've added a new `uninstall` background task and extended `nsIWindowsAlertService` to deregister notifications on uninstall. Differential Revision: https://phabricator.services.mozilla.com/D156625
- Loading branch information
1 parent
eb7902b
commit f203d49
Showing
5 changed files
with
136 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
var { AppConstants } = ChromeUtils.import( | ||
"resource://gre/modules/AppConstants.jsm" | ||
); | ||
|
||
var EXPORTED_SYMBOLS = ["runBackgroundTask"]; | ||
async function runBackgroundTask(commandLine) { | ||
if (AppConstants.platform !== "win") { | ||
console.log("Not a Windows install, skipping `uninstall` background task."); | ||
return; | ||
} | ||
console.log("Running BackgroundTask_uninstall."); | ||
|
||
removeNotifications(); | ||
} | ||
|
||
function removeNotifications() { | ||
console.log("Removing Windows toast notifications."); | ||
|
||
if (!("nsIWindowsAlertsService" in Ci)) { | ||
console.log("nsIWindowsAlertService not present."); | ||
return; | ||
} | ||
|
||
let alertsService; | ||
try { | ||
alertsService = Cc["@mozilla.org/system-alerts-service;1"] | ||
.getService(Ci.nsIAlertsService) | ||
.QueryInterface(Ci.nsIWindowsAlertsService); | ||
} catch (e) { | ||
console.error("Error retrieving nsIWindowsAlertService: " + e.message); | ||
return; | ||
} | ||
|
||
alertsService.removeAllNotificationsForInstall(); | ||
console.log("Finished removing Windows toast notifications."); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters