summaryrefslogtreecommitdiffstats
path: root/toolkit/components/windowwatcher/nsOpenWindowInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/windowwatcher/nsOpenWindowInfo.cpp')
-rw-r--r--toolkit/components/windowwatcher/nsOpenWindowInfo.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/toolkit/components/windowwatcher/nsOpenWindowInfo.cpp b/toolkit/components/windowwatcher/nsOpenWindowInfo.cpp
index 4374090075..042ee45f4e 100644
--- a/toolkit/components/windowwatcher/nsOpenWindowInfo.cpp
+++ b/toolkit/components/windowwatcher/nsOpenWindowInfo.cpp
@@ -57,6 +57,14 @@ nsOpenWindowInfo::BrowsingContextReadyCallback() {
return mBrowsingContextReadyCallback;
}
+NS_IMETHODIMP nsOpenWindowInfo::Cancel() {
+ if (mBrowsingContextReadyCallback) {
+ mBrowsingContextReadyCallback->BrowsingContextReady(nullptr);
+ mBrowsingContextReadyCallback = nullptr;
+ }
+ return NS_OK;
+}
+
NS_IMPL_ISUPPORTS(nsBrowsingContextReadyCallback,
nsIBrowsingContextReadyCallback)