diff options
author | Moonchild <moonchild@palemoon.org> | 2020-05-17 16:24:12 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-05-17 16:24:12 +0000 |
commit | 5fa34da0b77476d440eeb52b1258349cfe1c5013 (patch) | |
tree | 2a882637aeefd80aa93076e3f3ec83868616527a /netwerk/protocol | |
parent | 5966f18f414045b8a060fbd51168730e146352d6 (diff) | |
download | uxp-5fa34da0b77476d440eeb52b1258349cfe1c5013.tar.gz |
Issue #80 - De-unify netwerk/protocol/about
Diffstat (limited to 'netwerk/protocol')
-rw-r--r-- | netwerk/protocol/about/moz.build | 2 | ||||
-rw-r--r-- | netwerk/protocol/about/nsAboutCache.h | 1 | ||||
-rw-r--r-- | netwerk/protocol/about/nsAboutCacheEntry.h | 1 | ||||
-rw-r--r-- | netwerk/protocol/about/nsAboutProtocolHandler.cpp | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/netwerk/protocol/about/moz.build b/netwerk/protocol/about/moz.build index 60a10c9cc7..7c1842a4d8 100644 --- a/netwerk/protocol/about/moz.build +++ b/netwerk/protocol/about/moz.build @@ -14,7 +14,7 @@ EXPORTS += [ 'nsAboutProtocolUtils.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'nsAboutBlank.cpp', 'nsAboutCache.cpp', 'nsAboutCacheEntry.cpp', diff --git a/netwerk/protocol/about/nsAboutCache.h b/netwerk/protocol/about/nsAboutCache.h index c2d1af8505..6fb837eacd 100644 --- a/netwerk/protocol/about/nsAboutCache.h +++ b/netwerk/protocol/about/nsAboutCache.h @@ -9,6 +9,7 @@ #include "nsIAboutModule.h" #include "nsICacheStorageVisitor.h" #include "nsICacheStorage.h" +#include "nsIChannel.h" #include "nsString.h" #include "nsIOutputStream.h" diff --git a/netwerk/protocol/about/nsAboutCacheEntry.h b/netwerk/protocol/about/nsAboutCacheEntry.h index 44a78760be..8bfa0aa723 100644 --- a/netwerk/protocol/about/nsAboutCacheEntry.h +++ b/netwerk/protocol/about/nsAboutCacheEntry.h @@ -9,6 +9,7 @@ #include "nsIAboutModule.h" #include "nsICacheEntryOpenCallback.h" #include "nsICacheEntry.h" +#include "nsIChannel.h" #include "nsIStreamListener.h" #include "nsString.h" #include "nsCOMPtr.h" diff --git a/netwerk/protocol/about/nsAboutProtocolHandler.cpp b/netwerk/protocol/about/nsAboutProtocolHandler.cpp index 998fc71f95..905ecb5a68 100644 --- a/netwerk/protocol/about/nsAboutProtocolHandler.cpp +++ b/netwerk/protocol/about/nsAboutProtocolHandler.cpp @@ -20,6 +20,7 @@ #include "nsIWritablePropertyBag2.h" #include "nsIChannel.h" #include "nsIScriptError.h" +#include "nsContentUtils.h" namespace mozilla { namespace net { |