summaryrefslogtreecommitdiffstats
path: root/embedding
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-03-29 03:48:46 -0400
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 13:20:54 +0200
commit56f837533876b08491de48f4a2cd9eb0f05c6d95 (patch)
tree4b8ef4706a2701c2d1988a642a7e9bb9cd2aa6a3 /embedding
parent2407845ec187fc0bddcf061f41a5791c7041d9ff (diff)
downloadUXP-56f837533876b08491de48f4a2cd9eb0f05c6d95.tar
UXP-56f837533876b08491de48f4a2cd9eb0f05c6d95.tar.gz
UXP-56f837533876b08491de48f4a2cd9eb0f05c6d95.tar.lz
UXP-56f837533876b08491de48f4a2cd9eb0f05c6d95.tar.xz
UXP-56f837533876b08491de48f4a2cd9eb0f05c6d95.zip
Revert "Only state the stop notification for JSDownloads in nsWebBrowserPersist::EndDownload"
This reverts commit aa28523a553f5e2553c781081eb21715aedb7eaf.
Diffstat (limited to 'embedding')
-rw-r--r--embedding/components/webbrowserpersist/nsWebBrowserPersist.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/embedding/components/webbrowserpersist/nsWebBrowserPersist.cpp b/embedding/components/webbrowserpersist/nsWebBrowserPersist.cpp
index a31414e7f..437d21997 100644
--- a/embedding/components/webbrowserpersist/nsWebBrowserPersist.cpp
+++ b/embedding/components/webbrowserpersist/nsWebBrowserPersist.cpp
@@ -2351,18 +2351,16 @@ nsWebBrowserPersist::EndDownload(nsresult aResult)
{
mPersistResult = aResult;
}
+
// mCompleted needs to be set before issuing the stop notification.
// (Bug 1224437)
mCompleted = true;
-
-#ifdef MOZ_JSDOWNLOADS
// State stop notification
if (mProgressListener) {
mProgressListener->OnStateChange(nullptr, nullptr,
nsIWebProgressListener::STATE_STOP
| nsIWebProgressListener::STATE_IS_NETWORK, mPersistResult);
}
-#endif
// Do file cleanup if required
if (NS_FAILED(aResult) && (mPersistFlags & PERSIST_FLAGS_CLEANUP_ON_FAILURE))