diff options
author | Moonchild <moonchild@palemoon.org> | 2020-04-23 14:13:58 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-26 10:20:05 +0200 |
commit | 5a34fb5e1da568ce9e9e8e99423d34d33d0770f9 (patch) | |
tree | bce9693b93c249ed9260bad58e6be6c744207292 /dom/security/nsMixedContentBlocker.cpp | |
parent | 16c8dff724b32254f8075de2f57b8770d2ba3928 (diff) | |
download | UXP-5a34fb5e1da568ce9e9e8e99423d34d33d0770f9.tar UXP-5a34fb5e1da568ce9e9e8e99423d34d33d0770f9.tar.gz UXP-5a34fb5e1da568ce9e9e8e99423d34d33d0770f9.tar.lz UXP-5a34fb5e1da568ce9e9e8e99423d34d33d0770f9.tar.xz UXP-5a34fb5e1da568ce9e9e8e99423d34d33d0770f9.zip |
Issue #80 - De-unify dom/security
Exception: CSPUtils relies on something in CSPContext, but on
Windows it throws in an MSVC include which provides no hints.
Diffstat (limited to 'dom/security/nsMixedContentBlocker.cpp')
-rw-r--r-- | dom/security/nsMixedContentBlocker.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dom/security/nsMixedContentBlocker.cpp b/dom/security/nsMixedContentBlocker.cpp index 543429aff..85fb06d8d 100644 --- a/dom/security/nsMixedContentBlocker.cpp +++ b/dom/security/nsMixedContentBlocker.cpp @@ -20,6 +20,8 @@ #include "nsIContentViewer.h" #include "nsIChannel.h" #include "nsIHttpChannel.h" +#include "nsIProtocolHandler.h" +#include "nsIInterfaceRequestorUtils.h" #include "nsIParentChannel.h" #include "mozilla/Preferences.h" #include "nsIScriptObjectPrincipal.h" @@ -33,12 +35,12 @@ #include "nsAsyncRedirectVerifyHelper.h" #include "mozilla/LoadInfo.h" #include "nsISiteSecurityService.h" +#include "nsNetUtil.h" #include "mozilla/Logging.h" #include "mozilla/dom/ContentChild.h" #include "mozilla/ipc/URIUtils.h" - using namespace mozilla; enum nsMixedContentBlockerMessageType { |