mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
0c4425831b
* * * bug 945066. Fix windows bustage. r=jduell
79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set sw=2 ts=8 et tw=80 ft=cpp : */
|
|
|
|
/* 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 protocol PContent;
|
|
include protocol PHttpChannel;
|
|
include protocol PCookieService;
|
|
include protocol PBrowser;
|
|
include protocol PWyciwygChannel;
|
|
include protocol PFTPChannel;
|
|
include protocol PWebSocket;
|
|
include protocol PTCPSocket;
|
|
include protocol PTCPServerSocket;
|
|
include protocol PUDPSocket;
|
|
include protocol PRemoteOpenFile;
|
|
include protocol PDNSRequest;
|
|
include protocol PBlob; //FIXME: bug #792908
|
|
|
|
include protocol PRtspController;
|
|
include URIParams;
|
|
include InputStreamParams;
|
|
include NeckoChannelParams;
|
|
|
|
|
|
using class IPC::SerializedLoadContext from "SerializedLoadContext.h";
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
//-------------------------------------------------------------------
|
|
sync protocol PNecko
|
|
{
|
|
manager PContent;
|
|
manages PHttpChannel;
|
|
manages PCookieService;
|
|
manages PWyciwygChannel;
|
|
manages PFTPChannel;
|
|
manages PWebSocket;
|
|
manages PTCPSocket;
|
|
manages PTCPServerSocket;
|
|
manages PUDPSocket;
|
|
manages PDNSRequest;
|
|
manages PRemoteOpenFile;
|
|
manages PRtspController;
|
|
|
|
parent:
|
|
__delete__();
|
|
|
|
PCookieService();
|
|
PHttpChannel(nullable PBrowser browser,
|
|
SerializedLoadContext loadContext,
|
|
HttpChannelCreationArgs args);
|
|
PWyciwygChannel();
|
|
PFTPChannel(PBrowser browser, SerializedLoadContext loadContext,
|
|
FTPChannelCreationArgs args);
|
|
|
|
PWebSocket(PBrowser browser, SerializedLoadContext loadContext);
|
|
PTCPServerSocket(uint16_t localPort, uint16_t backlog, nsString binaryType);
|
|
PUDPSocket(nsCString host, uint16_t port, nsCString filter);
|
|
|
|
PDNSRequest(nsCString hostName, uint32_t flags);
|
|
|
|
PRemoteOpenFile(URIParams fileuri, OptionalURIParams appuri);
|
|
|
|
HTMLDNSPrefetch(nsString hostname, uint16_t flags);
|
|
CancelHTMLDNSPrefetch(nsString hostname, uint16_t flags, nsresult reason);
|
|
PRtspController();
|
|
|
|
both:
|
|
PTCPSocket();
|
|
};
|
|
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|