From 70fbdd82b8e7563b59d22551f1c6bc121f1ac295 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Thu, 18 Aug 2022 17:57:47 -0500 Subject: [PATCH] Issue #1990 - Part 3 - Fix build issue due to missing nsIThreadRetargetableStreamListener definition. --- dom/base/EventSource.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dom/base/EventSource.cpp b/dom/base/EventSource.cpp index b59fccd484..866ff1a91d 100644 --- a/dom/base/EventSource.cpp +++ b/dom/base/EventSource.cpp @@ -34,6 +34,7 @@ #include "nsIScriptObjectPrincipal.h" #include "nsJSUtils.h" #include "nsIThreadRetargetableRequest.h" +#include "nsIThreadRetargetableStreamListener.h" #include "nsIAsyncVerifyRedirectCallback.h" #include "nsIScriptError.h" #include "mozilla/dom/EncodingUtils.h"