diff options
author | Brian Smith <brian@dbsoft.org> | 2023-04-21 17:35:04 -0500 |
---|---|---|
committer | Brian Smith <brian@dbsoft.org> | 2023-04-27 13:34:55 -0500 |
commit | 914299b8ba22bb40fc30f83fe5481ebf4598ab48 (patch) | |
tree | ca0a35c7573f80c33d74b2f3f6b5bde5d5649a2e /netwerk | |
parent | e29f4488b1d8d33f3ca04531177d1c1690f57577 (diff) | |
download | uxp-914299b8ba22bb40fc30f83fe5481ebf4598ab48.tar.gz |
Issue #1691 - Part 8: Fix --enable-debug builds and continue dynamic module import changes.
https://bugzilla.mozilla.org/show_bug.cgi?id=1342012
Support import from timeout handlers by associating the initiating script with the compiled JSScript.
Fix error message that covers all import() failures that don't throw a JS exception.
https://bugzilla.mozilla.org/show_bug.cgi?id=1331662
Partial - Replace nsJSUtils::EvaluateString calls by ExecutionContext scopes.
Left EvaluateString() in nsXBLProtoImplField.cpp until ExecutionContext errors can be fixed.
(cherry picked from commit 22fcfc77971a9bb204df664c474681f4dcf54211)
Diffstat (limited to 'netwerk')
-rw-r--r-- | netwerk/dns/mdns/libmdns/MDNSResponderReply.cpp | 1 | ||||
-rw-r--r-- | netwerk/dns/mdns/libmdns/nsDNSServiceDiscovery.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/netwerk/dns/mdns/libmdns/MDNSResponderReply.cpp b/netwerk/dns/mdns/libmdns/MDNSResponderReply.cpp index 7aa5b3759a..124c0251da 100644 --- a/netwerk/dns/mdns/libmdns/MDNSResponderReply.cpp +++ b/netwerk/dns/mdns/libmdns/MDNSResponderReply.cpp @@ -6,6 +6,7 @@ #include "MDNSResponderReply.h" #include "mozilla/EndianUtils.h" #include "private/pprio.h" +#include "nsSocketTransportService2.h" namespace mozilla { namespace net { diff --git a/netwerk/dns/mdns/libmdns/nsDNSServiceDiscovery.cpp b/netwerk/dns/mdns/libmdns/nsDNSServiceDiscovery.cpp index cec8033d18..9676c64835 100644 --- a/netwerk/dns/mdns/libmdns/nsDNSServiceDiscovery.cpp +++ b/netwerk/dns/mdns/libmdns/nsDNSServiceDiscovery.cpp @@ -8,6 +8,7 @@ #include "nsICancelable.h" #include "nsXULAppAPI.h" #include "private/pprio.h" +#include "MainThreadUtils.h" namespace mozilla { namespace net { |