mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 887655 - Revert hiding the download notification on completion. r=margaret
This commit is contained in:
parent
36f8586ceb
commit
dc9febbae0
@ -16,7 +16,6 @@ var Downloads = {
|
||||
_dlmgr: null,
|
||||
_progressAlert: null,
|
||||
_privateDownloads: [],
|
||||
isForeground : true,
|
||||
|
||||
_getLocalFile: function dl__getLocalFile(aFileURI) {
|
||||
// if this is a URL, get the file from that
|
||||
@ -35,8 +34,6 @@ var Downloads = {
|
||||
this._progressAlert = new AlertDownloadProgressListener();
|
||||
this._dlmgr.addPrivacyAwareListener(this._progressAlert);
|
||||
Services.obs.addObserver(this, "last-pb-context-exited", true);
|
||||
Services.obs.addObserver(this, "application-background", false);
|
||||
Services.obs.addObserver(this, "application-foreground", false);
|
||||
},
|
||||
|
||||
openDownload: function dl_openDownload(aDownload) {
|
||||
@ -107,8 +104,6 @@ var Downloads = {
|
||||
|
||||
// observer for last-pb-context-exited
|
||||
observe: function dl_observe(aSubject, aTopic, aData) {
|
||||
switch (aTopic) {
|
||||
case "last-pb-context-exited": {
|
||||
let alertsService = Cc["@mozilla.org/alerts-service;1"].getService(Ci.nsIAlertsService);
|
||||
let progressListener = alertsService.QueryInterface(Ci.nsIAlertsProgressListener);
|
||||
let download;
|
||||
@ -120,17 +115,6 @@ var Downloads = {
|
||||
dump("Error removing private download: " + e);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case "application-foreground":
|
||||
this.isForeground = true;
|
||||
break;
|
||||
|
||||
case "application-background":
|
||||
this.isForeground = false;
|
||||
break;
|
||||
}
|
||||
},
|
||||
|
||||
QueryInterface: function (aIID) {
|
||||
@ -197,14 +181,8 @@ AlertDownloadProgressListener.prototype = {
|
||||
this._privateDownloads.splice(index, 1);
|
||||
}
|
||||
}
|
||||
// Checking existance of MimeInfo and if there is at least one application handler in addition
|
||||
// to default one.
|
||||
let existsAvailableHandler = (aDownload.MIMEInfo && aDownload.MIMEInfo.possibleApplicationHandlers.length > 1);
|
||||
|
||||
// We want to show the download finished notification only if it is not automatically opened.
|
||||
// A download is automatically opened if it has a default handler and fennec is in foreground.
|
||||
if (state == Ci.nsIDownloadManager.DOWNLOAD_FINISHED &&
|
||||
!(existsAvailableHandler && Downloads.isForeground)) {
|
||||
if (state == Ci.nsIDownloadManager.DOWNLOAD_FINISHED) {
|
||||
Downloads.showAlert(aDownload, Strings.browser.GetStringFromName("alertDownloadsDone2"),
|
||||
aDownload.displayName);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user