gecko/netwerk/ipc/PNecko.ipdl

52 lines
1.3 KiB
Plaintext
Raw Normal View History

2009-08-18 12:05:15 -07: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 04:12:37 -07: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 12:05:15 -07:00
include protocol PContent;
include protocol PHttpChannel;
include protocol PCookieService;
include protocol PBrowser;
include protocol PWyciwygChannel;
include protocol PFTPChannel;
include protocol PWebSocket;
include protocol PTCPSocket;
2009-08-18 12:05:15 -07:00
namespace mozilla {
namespace net {
//-------------------------------------------------------------------
sync protocol PNecko
2009-08-18 12:05:15 -07:00
{
manager PContent;
2009-08-18 12:05:15 -07:00
manages PHttpChannel;
manages PCookieService;
manages PWyciwygChannel;
manages PFTPChannel;
manages PWebSocket;
manages PTCPSocket;
2009-08-18 12:05:15 -07:00
parent:
__delete__();
PCookieService();
PWyciwygChannel();
PFTPChannel();
PWebSocket(PBrowser browser);
PTCPSocket(nsString host, uint16_t port, bool useSSL, nsString binaryType,
nullable PBrowser browser);
HTMLDNSPrefetch(nsString hostname, uint16_t flags);
CancelHTMLDNSPrefetch(nsString hostname, uint16_t flags, nsresult reason);
both:
PHttpChannel(nullable PBrowser browser);
2009-08-18 12:05:15 -07:00
};
} // namespace net
} // namespace mozilla