2009-08-18 12:05:15 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
|
|
|
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2009-08-18 12:05:15 -07:00
|
|
|
|
|
|
|
#include "mozilla/net/PNeckoParent.h"
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 11:55:33 -07:00
|
|
|
#include "mozilla/net/NeckoCommon.h"
|
2009-08-18 12:05:15 -07:00
|
|
|
|
|
|
|
#ifndef mozilla_net_NeckoParent_h
|
|
|
|
#define mozilla_net_NeckoParent_h
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
2012-12-29 01:02:16 -08:00
|
|
|
// Used to override channel Private Browsing status if needed.
|
|
|
|
enum PBOverrideStatus {
|
|
|
|
kPBOverride_Unset = 0,
|
|
|
|
kPBOverride_Private,
|
|
|
|
kPBOverride_NotPrivate
|
|
|
|
};
|
|
|
|
|
2009-08-18 12:05:15 -07:00
|
|
|
// Header file contents
|
|
|
|
class NeckoParent :
|
|
|
|
public PNeckoParent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NeckoParent();
|
|
|
|
virtual ~NeckoParent();
|
|
|
|
|
2012-12-29 01:02:16 -08:00
|
|
|
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<nsILoadContext> &aResult);
|
|
|
|
|
2009-08-18 12:05:15 -07:00
|
|
|
protected:
|
2012-10-09 16:46:24 -07:00
|
|
|
virtual PHttpChannelParent* AllocPHttpChannel(PBrowserParent*,
|
|
|
|
const SerializedLoadContext&);
|
2009-09-22 10:31:11 -07:00
|
|
|
virtual bool DeallocPHttpChannel(PHttpChannelParent*);
|
2010-03-25 16:02:28 -07:00
|
|
|
virtual PCookieServiceParent* AllocPCookieService();
|
|
|
|
virtual bool DeallocPCookieService(PCookieServiceParent*);
|
2010-10-11 04:35:10 -07:00
|
|
|
virtual PWyciwygChannelParent* AllocPWyciwygChannel();
|
|
|
|
virtual bool DeallocPWyciwygChannel(PWyciwygChannelParent*);
|
2012-12-29 01:02:16 -08:00
|
|
|
virtual PFTPChannelParent* AllocPFTPChannel(PBrowserParent* aBrowser,
|
|
|
|
const SerializedLoadContext& aSerialized);
|
2010-08-10 11:47:00 -07:00
|
|
|
virtual bool DeallocPFTPChannel(PFTPChannelParent*);
|
2012-12-29 01:02:16 -08:00
|
|
|
virtual PWebSocketParent* AllocPWebSocket(PBrowserParent* browser,
|
|
|
|
const SerializedLoadContext& aSerialized);
|
2011-05-04 06:36:23 -07:00
|
|
|
virtual bool DeallocPWebSocket(PWebSocketParent*);
|
2012-09-24 11:53:49 -07:00
|
|
|
virtual PTCPSocketParent* AllocPTCPSocket(const nsString& aHost,
|
|
|
|
const uint16_t& aPort,
|
|
|
|
const bool& useSSL,
|
|
|
|
const nsString& aBinaryType,
|
|
|
|
PBrowserParent* aBrowser);
|
2013-02-07 05:06:58 -08:00
|
|
|
|
|
|
|
virtual PRemoteOpenFileParent* AllocPRemoteOpenFile(const URIParams& aFileURI,
|
|
|
|
PBrowserParent* aBrowser)
|
|
|
|
MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvPRemoteOpenFileConstructor(PRemoteOpenFileParent* aActor,
|
|
|
|
const URIParams& aFileURI,
|
|
|
|
PBrowserParent* aBrowser)
|
|
|
|
MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPRemoteOpenFile(PRemoteOpenFileParent* aActor)
|
|
|
|
MOZ_OVERRIDE;
|
2012-12-22 05:56:21 -08:00
|
|
|
|
2012-09-24 11:53:49 -07:00
|
|
|
virtual bool RecvPTCPSocketConstructor(PTCPSocketParent*,
|
|
|
|
const nsString& aHost,
|
|
|
|
const uint16_t& aPort,
|
|
|
|
const bool& useSSL,
|
|
|
|
const nsString& aBinaryType,
|
|
|
|
PBrowserParent* aBrowser);
|
|
|
|
virtual bool DeallocPTCPSocket(PTCPSocketParent*);
|
2010-07-26 11:49:09 -07:00
|
|
|
virtual bool RecvHTMLDNSPrefetch(const nsString& hostname,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint16_t& flags);
|
2012-01-20 15:14:46 -08:00
|
|
|
virtual bool RecvCancelHTMLDNSPrefetch(const nsString& hostname,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint16_t& flags,
|
2012-01-20 15:14:46 -08:00
|
|
|
const nsresult& reason);
|
2012-12-22 05:56:21 -08:00
|
|
|
private:
|
|
|
|
nsCString mCoreAppsBasePath;
|
|
|
|
nsCString mWebAppsBasePath;
|
2009-08-18 12:05:15 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_net_NeckoParent_h
|