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 ft=cpp : */
|
|
|
|
|
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
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
include protocol PContent;
|
2010-04-27 11:12:38 +04:00
|
|
|
include protocol PHttpChannel;
|
|
|
|
include protocol PCookieService;
|
2010-07-19 22:33:33 +04:00
|
|
|
include protocol PBrowser;
|
2010-10-11 15:35:10 +04:00
|
|
|
include protocol PWyciwygChannel;
|
2010-08-10 22:47:00 +04:00
|
|
|
include protocol PFTPChannel;
|
2011-05-04 17:36:23 +04:00
|
|
|
include protocol PWebSocket;
|
2012-09-24 22:53:49 +04:00
|
|
|
include protocol PTCPSocket;
|
2013-07-29 21:36:43 +04:00
|
|
|
include protocol PTCPServerSocket;
|
2013-05-10 16:00:28 +04:00
|
|
|
include protocol PUDPSocket;
|
2012-12-22 17:56:21 +04:00
|
|
|
include protocol PRemoteOpenFile;
|
2013-12-11 23:03:51 +04:00
|
|
|
include protocol PDNSRequest;
|
2014-03-11 02:04:28 +04:00
|
|
|
include protocol PChannelDiverter;
|
2013-06-22 20:09:19 +04:00
|
|
|
include protocol PBlob; //FIXME: bug #792908
|
2014-03-25 22:37:28 +04:00
|
|
|
include protocol PFileDescriptorSet;
|
2013-06-22 20:09:19 +04:00
|
|
|
|
2013-09-23 14:12:11 +04:00
|
|
|
include protocol PRtspController;
|
2012-12-22 17:56:21 +04:00
|
|
|
include URIParams;
|
2013-06-22 20:09:19 +04:00
|
|
|
include InputStreamParams;
|
|
|
|
include NeckoChannelParams;
|
2009-08-18 23:05:15 +04:00
|
|
|
|
2012-10-10 03:46:24 +04:00
|
|
|
|
2013-10-01 23:25:07 +04:00
|
|
|
using class IPC::SerializedLoadContext from "SerializedLoadContext.h";
|
2012-10-10 03:46:24 +04:00
|
|
|
|
2009-08-18 23:05:15 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------
|
2010-03-26 02:02:28 +03:00
|
|
|
sync protocol PNecko
|
2009-08-18 23:05:15 +04:00
|
|
|
{
|
2010-07-19 22:33:33 +04:00
|
|
|
manager PContent;
|
2009-08-18 23:05:15 +04:00
|
|
|
manages PHttpChannel;
|
2010-03-26 02:02:28 +03:00
|
|
|
manages PCookieService;
|
2010-10-11 15:35:10 +04:00
|
|
|
manages PWyciwygChannel;
|
2010-08-10 22:47:00 +04:00
|
|
|
manages PFTPChannel;
|
2011-05-04 17:36:23 +04:00
|
|
|
manages PWebSocket;
|
2012-09-24 22:53:49 +04:00
|
|
|
manages PTCPSocket;
|
2013-07-29 21:36:43 +04:00
|
|
|
manages PTCPServerSocket;
|
2013-05-10 16:00:28 +04:00
|
|
|
manages PUDPSocket;
|
2013-12-11 23:03:51 +04:00
|
|
|
manages PDNSRequest;
|
2012-12-22 17:56:21 +04:00
|
|
|
manages PRemoteOpenFile;
|
2013-09-23 14:12:11 +04:00
|
|
|
manages PRtspController;
|
2014-03-11 02:04:28 +04:00
|
|
|
manages PChannelDiverter;
|
2009-08-18 23:05:15 +04:00
|
|
|
|
|
|
|
parent:
|
2009-12-03 11:16:14 +03:00
|
|
|
__delete__();
|
|
|
|
|
2010-03-26 02:02:28 +03:00
|
|
|
PCookieService();
|
2012-10-10 03:46:24 +04:00
|
|
|
PHttpChannel(nullable PBrowser browser,
|
2013-06-22 20:09:19 +04:00
|
|
|
SerializedLoadContext loadContext,
|
|
|
|
HttpChannelCreationArgs args);
|
2010-10-11 15:35:10 +04:00
|
|
|
PWyciwygChannel();
|
2013-06-22 20:09:19 +04:00
|
|
|
PFTPChannel(PBrowser browser, SerializedLoadContext loadContext,
|
|
|
|
FTPChannelCreationArgs args);
|
|
|
|
|
2012-12-29 13:02:16 +04:00
|
|
|
PWebSocket(PBrowser browser, SerializedLoadContext loadContext);
|
2013-07-29 21:36:43 +04:00
|
|
|
PTCPServerSocket(uint16_t localPort, uint16_t backlog, nsString binaryType);
|
2013-11-29 20:13:44 +04:00
|
|
|
PUDPSocket(nsCString host, uint16_t port, nsCString filter);
|
2013-05-10 16:00:28 +04:00
|
|
|
|
2013-12-11 23:03:51 +04:00
|
|
|
PDNSRequest(nsCString hostName, uint32_t flags);
|
|
|
|
|
2013-09-19 03:55:56 +04:00
|
|
|
PRemoteOpenFile(URIParams fileuri, OptionalURIParams appuri);
|
2010-07-26 22:49:09 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
HTMLDNSPrefetch(nsString hostname, uint16_t flags);
|
|
|
|
CancelHTMLDNSPrefetch(nsString hostname, uint16_t flags, nsresult reason);
|
2013-09-23 14:12:11 +04:00
|
|
|
PRtspController();
|
2014-03-11 02:04:28 +04:00
|
|
|
PChannelDiverter(ChannelDiverterArgs channel);
|
2010-08-11 07:11:57 +04:00
|
|
|
|
2013-07-29 21:36:43 +04:00
|
|
|
both:
|
|
|
|
PTCPSocket();
|
2009-08-18 23:05:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|