2009-08-18 23:05:15 +04: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 15:12:37 +04: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 23:05:15 +04: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 22:55:33 +04:00
|
|
|
#include "mozilla/net/NeckoCommon.h"
|
2009-08-18 23:05:15 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_net_NeckoParent_h
|
|
|
|
#define mozilla_net_NeckoParent_h
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
2012-12-29 13:02:16 +04:00
|
|
|
// Used to override channel Private Browsing status if needed.
|
|
|
|
enum PBOverrideStatus {
|
|
|
|
kPBOverride_Unset = 0,
|
|
|
|
kPBOverride_Private,
|
|
|
|
kPBOverride_NotPrivate
|
|
|
|
};
|
|
|
|
|
2009-08-18 23:05:15 +04:00
|
|
|
// Header file contents
|
|
|
|
class NeckoParent :
|
|
|
|
public PNeckoParent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NeckoParent();
|
|
|
|
virtual ~NeckoParent();
|
|
|
|
|
2012-12-29 13:02:16 +04: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 23:05:15 +04:00
|
|
|
protected:
|
2012-10-10 03:46:24 +04:00
|
|
|
virtual PHttpChannelParent* AllocPHttpChannel(PBrowserParent*,
|
|
|
|
const SerializedLoadContext&);
|
2009-09-22 21:31:11 +04:00
|
|
|
virtual bool DeallocPHttpChannel(PHttpChannelParent*);
|
2010-03-26 02:02:28 +03:00
|
|
|
virtual PCookieServiceParent* AllocPCookieService();
|
|
|
|
virtual bool DeallocPCookieService(PCookieServiceParent*);
|
2010-10-11 15:35:10 +04:00
|
|
|
virtual PWyciwygChannelParent* AllocPWyciwygChannel();
|
|
|
|
virtual bool DeallocPWyciwygChannel(PWyciwygChannelParent*);
|
2012-12-29 13:02:16 +04:00
|
|
|
virtual PFTPChannelParent* AllocPFTPChannel(PBrowserParent* aBrowser,
|
|
|
|
const SerializedLoadContext& aSerialized);
|
2010-08-10 22:47:00 +04:00
|
|
|
virtual bool DeallocPFTPChannel(PFTPChannelParent*);
|
2012-12-29 13:02:16 +04:00
|
|
|
virtual PWebSocketParent* AllocPWebSocket(PBrowserParent* browser,
|
|
|
|
const SerializedLoadContext& aSerialized);
|
2011-05-04 17:36:23 +04:00
|
|
|
virtual bool DeallocPWebSocket(PWebSocketParent*);
|
2012-09-24 22:53:49 +04:00
|
|
|
virtual PTCPSocketParent* AllocPTCPSocket(const nsString& aHost,
|
|
|
|
const uint16_t& aPort,
|
|
|
|
const bool& useSSL,
|
|
|
|
const nsString& aBinaryType,
|
|
|
|
PBrowserParent* aBrowser);
|
2013-02-09 05:18:18 +04:00
|
|
|
virtual PRemoteOpenFileParent* AllocPRemoteOpenFile(
|
|
|
|
const URIParams& fileuri,
|
|
|
|
PBrowserParent* browser);
|
|
|
|
virtual bool DeallocPRemoteOpenFile(PRemoteOpenFileParent* actor);
|
2012-12-22 17:56:21 +04:00
|
|
|
|
2012-09-24 22:53:49 +04: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 22:49:09 +04:00
|
|
|
virtual bool RecvHTMLDNSPrefetch(const nsString& hostname,
|
2012-08-22 19:56:38 +04:00
|
|
|
const uint16_t& flags);
|
2012-01-21 03:14:46 +04:00
|
|
|
virtual bool RecvCancelHTMLDNSPrefetch(const nsString& hostname,
|
2012-08-22 19:56:38 +04:00
|
|
|
const uint16_t& flags,
|
2012-01-21 03:14:46 +04:00
|
|
|
const nsresult& reason);
|
2012-12-22 17:56:21 +04:00
|
|
|
private:
|
|
|
|
nsCString mCoreAppsBasePath;
|
|
|
|
nsCString mWebAppsBasePath;
|
2009-08-18 23:05:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_net_NeckoParent_h
|