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
|
|
|
|
|
|
|
#ifndef mozilla_net_NeckoChild_h
|
|
|
|
#define mozilla_net_NeckoChild_h
|
|
|
|
|
|
|
|
#include "mozilla/net/PNeckoChild.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
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
|
|
|
// Header file contents
|
|
|
|
class NeckoChild :
|
|
|
|
public PNeckoChild
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NeckoChild();
|
|
|
|
virtual ~NeckoChild();
|
|
|
|
|
|
|
|
static void InitNeckoChild();
|
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
|
|
|
static void DestroyNeckoChild();
|
2009-08-18 12:05:15 -07:00
|
|
|
|
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
|
|
|
protected:
|
2013-06-22 09:09:19 -07:00
|
|
|
virtual PHttpChannelChild*
|
2013-07-08 08:48:39 -07:00
|
|
|
AllocPHttpChannelChild(PBrowserChild*, const SerializedLoadContext&,
|
2014-01-17 11:49:39 -08:00
|
|
|
const HttpChannelCreationArgs& aOpenArgs) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPHttpChannelChild(PHttpChannelChild*) MOZ_OVERRIDE;
|
|
|
|
virtual PCookieServiceChild* AllocPCookieServiceChild() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPCookieServiceChild(PCookieServiceChild*) MOZ_OVERRIDE;
|
|
|
|
virtual PWyciwygChannelChild* AllocPWyciwygChannelChild() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPWyciwygChannelChild(PWyciwygChannelChild*) MOZ_OVERRIDE;
|
2013-06-22 09:09:19 -07:00
|
|
|
virtual PFTPChannelChild*
|
2013-07-08 08:48:39 -07:00
|
|
|
AllocPFTPChannelChild(PBrowserChild* aBrowser,
|
|
|
|
const SerializedLoadContext& aSerialized,
|
2014-01-17 11:49:39 -08:00
|
|
|
const FTPChannelCreationArgs& aOpenArgs) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPFTPChannelChild(PFTPChannelChild*) MOZ_OVERRIDE;
|
|
|
|
virtual PWebSocketChild*
|
|
|
|
AllocPWebSocketChild(PBrowserChild*, const SerializedLoadContext&) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPWebSocketChild(PWebSocketChild*) MOZ_OVERRIDE;
|
|
|
|
virtual PTCPSocketChild* AllocPTCPSocketChild() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPTCPSocketChild(PTCPSocketChild*) MOZ_OVERRIDE;
|
|
|
|
virtual PTCPServerSocketChild*
|
|
|
|
AllocPTCPServerSocketChild(const uint16_t& aLocalPort,
|
|
|
|
const uint16_t& aBacklog,
|
|
|
|
const nsString& aBinaryType) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPTCPServerSocketChild(PTCPServerSocketChild*) MOZ_OVERRIDE;
|
2013-05-10 05:00:28 -07:00
|
|
|
virtual PUDPSocketChild* AllocPUDPSocketChild(const nsCString& aHost,
|
2013-11-29 08:13:44 -08:00
|
|
|
const uint16_t& aPort,
|
2014-01-17 11:49:39 -08:00
|
|
|
const nsCString& aFilter) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPUDPSocketChild(PUDPSocketChild*) MOZ_OVERRIDE;
|
2013-12-11 11:03:51 -08:00
|
|
|
virtual PDNSRequestChild* AllocPDNSRequestChild(const nsCString& aHost,
|
2014-01-17 11:49:39 -08:00
|
|
|
const uint32_t& aFlags) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPDNSRequestChild(PDNSRequestChild*) MOZ_OVERRIDE;
|
|
|
|
virtual PRemoteOpenFileChild*
|
|
|
|
AllocPRemoteOpenFileChild(const URIParams&,
|
|
|
|
const OptionalURIParams&) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPRemoteOpenFileChild(PRemoteOpenFileChild*) MOZ_OVERRIDE;
|
|
|
|
virtual PRtspControllerChild* AllocPRtspControllerChild() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPRtspControllerChild(PRtspControllerChild*) MOZ_OVERRIDE;
|
2014-03-10 15:04:28 -07:00
|
|
|
virtual PChannelDiverterChild*
|
|
|
|
AllocPChannelDiverterChild(const ChannelDiverterArgs& channel) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
|
|
DeallocPChannelDiverterChild(PChannelDiverterChild* actor) MOZ_OVERRIDE;
|
2009-08-18 12:05:15 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reference to the PNecko Child protocol.
|
|
|
|
* Null if this is not a content process.
|
|
|
|
*/
|
|
|
|
extern PNeckoChild *gNeckoChild;
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_net_NeckoChild_h
|