mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
61 lines
2.4 KiB
C++
61 lines
2.4 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
|
|
|
/* 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/. */
|
|
|
|
#include "mozilla/net/PNeckoParent.h"
|
|
#include "mozilla/net/NeckoCommon.h"
|
|
|
|
#ifndef mozilla_net_NeckoParent_h
|
|
#define mozilla_net_NeckoParent_h
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
// Header file contents
|
|
class NeckoParent :
|
|
public PNeckoParent
|
|
{
|
|
public:
|
|
NeckoParent();
|
|
virtual ~NeckoParent();
|
|
|
|
protected:
|
|
virtual PHttpChannelParent* AllocPHttpChannel(PBrowserParent*,
|
|
const SerializedLoadContext&);
|
|
virtual bool DeallocPHttpChannel(PHttpChannelParent*);
|
|
virtual PCookieServiceParent* AllocPCookieService();
|
|
virtual bool DeallocPCookieService(PCookieServiceParent*);
|
|
virtual PWyciwygChannelParent* AllocPWyciwygChannel();
|
|
virtual bool DeallocPWyciwygChannel(PWyciwygChannelParent*);
|
|
virtual PFTPChannelParent* AllocPFTPChannel();
|
|
virtual bool DeallocPFTPChannel(PFTPChannelParent*);
|
|
virtual PWebSocketParent* AllocPWebSocket(PBrowserParent* browser);
|
|
virtual bool DeallocPWebSocket(PWebSocketParent*);
|
|
virtual PTCPSocketParent* AllocPTCPSocket(const nsString& aHost,
|
|
const uint16_t& aPort,
|
|
const bool& useSSL,
|
|
const nsString& aBinaryType,
|
|
PBrowserParent* aBrowser);
|
|
virtual bool RecvPTCPSocketConstructor(PTCPSocketParent*,
|
|
const nsString& aHost,
|
|
const uint16_t& aPort,
|
|
const bool& useSSL,
|
|
const nsString& aBinaryType,
|
|
PBrowserParent* aBrowser);
|
|
virtual bool DeallocPTCPSocket(PTCPSocketParent*);
|
|
virtual bool RecvHTMLDNSPrefetch(const nsString& hostname,
|
|
const uint16_t& flags);
|
|
virtual bool RecvCancelHTMLDNSPrefetch(const nsString& hostname,
|
|
const uint16_t& flags,
|
|
const nsresult& reason);
|
|
|
|
};
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_net_NeckoParent_h
|