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*
|
|
|
|
AllocPHttpChannel(PBrowserChild*, const SerializedLoadContext&,
|
|
|
|
const HttpChannelCreationArgs& aOpenArgs);
|
2009-09-22 17:31:11 +00:00
|
|
|
virtual bool DeallocPHttpChannel(PHttpChannelChild*);
|
2010-03-25 23:02:28 +00:00
|
|
|
virtual PCookieServiceChild* AllocPCookieService();
|
|
|
|
virtual bool DeallocPCookieService(PCookieServiceChild*);
|
2010-10-11 11:35:10 +00:00
|
|
|
virtual PWyciwygChannelChild* AllocPWyciwygChannel();
|
|
|
|
virtual bool DeallocPWyciwygChannel(PWyciwygChannelChild*);
|
2013-06-22 16:09:19 +00:00
|
|
|
virtual PFTPChannelChild*
|
|
|
|
AllocPFTPChannel(PBrowserChild* aBrowser,
|
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
const FTPChannelCreationArgs& aOpenArgs);
|
2010-08-10 18:47:00 +00:00
|
|
|
virtual bool DeallocPFTPChannel(PFTPChannelChild*);
|
2012-12-29 09:02:16 +00:00
|
|
|
virtual PWebSocketChild* AllocPWebSocket(PBrowserChild*, const SerializedLoadContext&);
|
2011-05-04 13:36:23 +00:00
|
|
|
virtual bool DeallocPWebSocket(PWebSocketChild*);
|
2012-09-24 18:53:49 +00:00
|
|
|
virtual PTCPSocketChild* AllocPTCPSocket(const nsString& aHost,
|
|
|
|
const uint16_t& aPort,
|
|
|
|
const bool& useSSL,
|
|
|
|
const nsString& aBinaryType,
|
|
|
|
PBrowserChild* aBrowser);
|
|
|
|
virtual bool DeallocPTCPSocket(PTCPSocketChild*);
|
2012-12-22 13:56:21 +00:00
|
|
|
virtual PRemoteOpenFileChild* AllocPRemoteOpenFile(const URIParams&,
|
|
|
|
PBrowserChild*);
|
|
|
|
virtual bool DeallocPRemoteOpenFile(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
|