diff --git a/netwerk/protocol/http/src/nsHttpChannel.cpp b/netwerk/protocol/http/src/nsHttpChannel.cpp index 469a617cefc..3b7549506c0 100644 --- a/netwerk/protocol/http/src/nsHttpChannel.cpp +++ b/netwerk/protocol/http/src/nsHttpChannel.cpp @@ -44,6 +44,10 @@ * * ***** END LICENSE BLOCK ***** */ +#ifdef MOZ_IPC +#include "base/basictypes.h" +#endif + #include "nsHttpChannel.h" #include "nsHttpHandler.h" #include "nsIHttpAuthenticator.h" @@ -67,6 +71,8 @@ #include "nsICacheService.h" #include "nsDNSPrefetch.h" +#include "nsIOService.h" + // True if the local cache should be bypassed when processing a request. #define BYPASS_LOCAL_CACHE(loadFlags) \ (loadFlags & (nsIRequest::LOAD_BYPASS_CACHE | \ diff --git a/netwerk/protocol/http/src/nsHttpTransaction.cpp b/netwerk/protocol/http/src/nsHttpTransaction.cpp index 6dccd8d0c28..ac8c0881492 100644 --- a/netwerk/protocol/http/src/nsHttpTransaction.cpp +++ b/netwerk/protocol/http/src/nsHttpTransaction.cpp @@ -38,6 +38,10 @@ * * ***** END LICENSE BLOCK ***** */ +#ifdef MOZ_IPC +#include "base/basictypes.h" +#endif + #include "nsIOService.h" #include "nsHttpHandler.h" #include "nsHttpTransaction.h"