2009-08-18 19:05:15 +00: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 11:12:37 +00: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 19:05:15 +00: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 18:55:33 +00:00
|
|
|
#include "mozilla/net/NeckoCommon.h"
|
2009-08-18 19:05:15 +00: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 18:55:33 +00:00
|
|
|
static void DestroyNeckoChild();
|
2009-08-18 19:05:15 +00: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 18:55:33 +00:00
|
|
|
protected:
|
2013-06-22 16:09:19 +00:00
|
|
|
virtual PHttpChannelChild*
|
2013-07-08 15:48:39 +00:00
|
|
|
AllocPHttpChannelChild(PBrowserChild*, const SerializedLoadContext&,
|
|
|
|
const HttpChannelCreationArgs& aOpenArgs);
|
|
|
|
virtual bool DeallocPHttpChannelChild(PHttpChannelChild*);
|
|
|
|
virtual PCookieServiceChild* AllocPCookieServiceChild();
|
|
|
|
virtual bool DeallocPCookieServiceChild(PCookieServiceChild*);
|
|
|
|
virtual PWyciwygChannelChild* AllocPWyciwygChannelChild();
|
|
|
|
virtual bool DeallocPWyciwygChannelChild(PWyciwygChannelChild*);
|
2013-06-22 16:09:19 +00:00
|
|
|
virtual PFTPChannelChild*
|
2013-07-08 15:48:39 +00:00
|
|
|
AllocPFTPChannelChild(PBrowserChild* aBrowser,
|
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
const FTPChannelCreationArgs& aOpenArgs);
|
|
|
|
virtual bool DeallocPFTPChannelChild(PFTPChannelChild*);
|
|
|
|
virtual PWebSocketChild* AllocPWebSocketChild(PBrowserChild*, const SerializedLoadContext&);
|
|
|
|
virtual bool DeallocPWebSocketChild(PWebSocketChild*);
|
|
|
|
virtual PTCPSocketChild* AllocPTCPSocketChild(const nsString& aHost,
|
|
|
|
const uint16_t& aPort,
|
|
|
|
const bool& useSSL,
|
|
|
|
const nsString& aBinaryType,
|
|
|
|
PBrowserChild* aBrowser);
|
|
|
|
virtual bool DeallocPTCPSocketChild(PTCPSocketChild*);
|
|
|
|
virtual PRemoteOpenFileChild* AllocPRemoteOpenFileChild(const URIParams&,
|
|
|
|
PBrowserChild*);
|
|
|
|
virtual bool DeallocPRemoteOpenFileChild(PRemoteOpenFileChild*);
|
2009-08-18 19:05:15 +00: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
|