/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set sw=2 ts=8 et tw=80 : */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "mozilla/net/PNeckoParent.h" #include "mozilla/net/NeckoCommon.h" #ifndef mozilla_net_NeckoParent_h #define mozilla_net_NeckoParent_h namespace mozilla { namespace net { // Used to override channel Private Browsing status if needed. enum PBOverrideStatus { kPBOverride_Unset = 0, kPBOverride_Private, kPBOverride_NotPrivate }; // Header file contents class NeckoParent : public PNeckoParent { public: NeckoParent(); virtual ~NeckoParent(); MOZ_WARN_UNUSED_RESULT static const char * GetValidatedAppInfo(const SerializedLoadContext& aSerialized, PBrowserParent* aBrowser, uint32_t* aAppId, bool* aInBrowserElement); /* * Creates LoadContext for parent-side of an e10s channel. * * Values from PBrowserParent are more secure, and override those set in * SerializedLoadContext. * * Returns null if successful, or an error string if failed. */ MOZ_WARN_UNUSED_RESULT static const char* CreateChannelLoadContext(PBrowserParent* aBrowser, const SerializedLoadContext& aSerialized, nsCOMPtr &aResult); protected: virtual PHttpChannelParent* AllocPHttpChannel(PBrowserParent*, const SerializedLoadContext&); virtual bool DeallocPHttpChannel(PHttpChannelParent*); virtual PCookieServiceParent* AllocPCookieService(); virtual bool DeallocPCookieService(PCookieServiceParent*); virtual PWyciwygChannelParent* AllocPWyciwygChannel(); virtual bool DeallocPWyciwygChannel(PWyciwygChannelParent*); virtual PFTPChannelParent* AllocPFTPChannel(PBrowserParent* aBrowser, const SerializedLoadContext& aSerialized); virtual bool DeallocPFTPChannel(PFTPChannelParent*); virtual PWebSocketParent* AllocPWebSocket(PBrowserParent* browser, const SerializedLoadContext& aSerialized); virtual bool DeallocPWebSocket(PWebSocketParent*); virtual PTCPSocketParent* AllocPTCPSocket(const nsString& aHost, const uint16_t& aPort, const bool& useSSL, const nsString& aBinaryType, PBrowserParent* aBrowser); virtual PRemoteOpenFileParent* AllocPRemoteOpenFile( const URIParams& fileuri, PBrowserParent* browser); virtual bool DeallocPRemoteOpenFile(PRemoteOpenFileParent* actor); virtual bool RecvPTCPSocketConstructor(PTCPSocketParent*, const nsString& aHost, const uint16_t& aPort, const bool& useSSL, const nsString& aBinaryType, PBrowserParent* aBrowser); virtual bool DeallocPTCPSocket(PTCPSocketParent*); virtual bool RecvHTMLDNSPrefetch(const nsString& hostname, const uint16_t& flags); virtual bool RecvCancelHTMLDNSPrefetch(const nsString& hostname, const uint16_t& flags, const nsresult& reason); private: nsCString mCoreAppsBasePath; nsCString mWebAppsBasePath; }; } // namespace net } // namespace mozilla #endif // mozilla_net_NeckoParent_h