2009-08-18 19:05:15 +00: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 11:12:37 +00: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 19:05:15 +00:00
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
include protocol PContent;
|
2010-04-27 07:12:38 +00:00
|
|
|
include protocol PHttpChannel;
|
|
|
|
include protocol PCookieService;
|
2010-07-19 18:33:33 +00:00
|
|
|
include protocol PBrowser;
|
2010-10-11 11:35:10 +00:00
|
|
|
include protocol PWyciwygChannel;
|
2010-08-10 18:47:00 +00:00
|
|
|
include protocol PFTPChannel;
|
2011-05-04 13:36:23 +00:00
|
|
|
include protocol PWebSocket;
|
2012-09-24 18:53:49 +00:00
|
|
|
include protocol PTCPSocket;
|
2012-12-22 13:56:21 +00:00
|
|
|
include protocol PRemoteOpenFile;
|
|
|
|
include URIParams;
|
2009-08-18 19:05:15 +00:00
|
|
|
|
2012-10-09 23:46:24 +00:00
|
|
|
include "SerializedLoadContext.h";
|
|
|
|
|
|
|
|
using IPC::SerializedLoadContext;
|
|
|
|
|
2009-08-18 19:05:15 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------
|
2010-03-25 23:02:28 +00:00
|
|
|
sync protocol PNecko
|
2009-08-18 19:05:15 +00:00
|
|
|
{
|
2010-07-19 18:33:33 +00:00
|
|
|
manager PContent;
|
2009-08-18 19:05:15 +00:00
|
|
|
manages PHttpChannel;
|
2010-03-25 23:02:28 +00:00
|
|
|
manages PCookieService;
|
2010-10-11 11:35:10 +00:00
|
|
|
manages PWyciwygChannel;
|
2010-08-10 18:47:00 +00:00
|
|
|
manages PFTPChannel;
|
2011-05-04 13:36:23 +00:00
|
|
|
manages PWebSocket;
|
2012-09-24 18:53:49 +00:00
|
|
|
manages PTCPSocket;
|
2012-12-22 13:56:21 +00:00
|
|
|
manages PRemoteOpenFile;
|
2009-08-18 19:05:15 +00:00
|
|
|
|
|
|
|
parent:
|
2009-12-03 08:16:14 +00:00
|
|
|
__delete__();
|
|
|
|
|
2010-03-25 23:02:28 +00:00
|
|
|
PCookieService();
|
2012-10-09 23:46:24 +00:00
|
|
|
PHttpChannel(nullable PBrowser browser,
|
|
|
|
SerializedLoadContext loadContext);
|
2010-10-11 11:35:10 +00:00
|
|
|
PWyciwygChannel();
|
2012-12-29 09:02:16 +00:00
|
|
|
PFTPChannel(PBrowser browser, SerializedLoadContext loadContext);
|
|
|
|
PWebSocket(PBrowser browser, SerializedLoadContext loadContext);
|
2012-09-24 18:53:49 +00:00
|
|
|
PTCPSocket(nsString host, uint16_t port, bool useSSL, nsString binaryType,
|
|
|
|
nullable PBrowser browser);
|
2013-02-07 13:06:58 +00:00
|
|
|
|
|
|
|
// Request that the parent open a file.
|
2012-12-22 13:56:21 +00:00
|
|
|
PRemoteOpenFile(URIParams fileuri, nullable PBrowser browser);
|
2010-07-26 18:49:09 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
HTMLDNSPrefetch(nsString hostname, uint16_t flags);
|
|
|
|
CancelHTMLDNSPrefetch(nsString hostname, uint16_t flags, nsresult reason);
|
2010-08-11 03:11:57 +00:00
|
|
|
|
2009-08-18 19:05:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|