mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
48 lines
1.6 KiB
C++
48 lines
1.6 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* browser);
|
|
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 bool RecvHTMLDNSPrefetch(const nsString& hostname,
|
|
const PRUint16& flags);
|
|
virtual bool RecvCancelHTMLDNSPrefetch(const nsString& hostname,
|
|
const PRUint16& flags,
|
|
const nsresult& reason);
|
|
|
|
};
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_net_NeckoParent_h
|