gecko/dom/network/interfaces/nsITCPSocketChild.idl
2012-09-24 14:53:49 -04:00

26 lines
964 B
Plaintext

/* 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 "domstubs.idl"
interface nsITCPSocketInternal;
interface nsIDOMWindow;
// Interface to allow the content process socket to reach the IPC bridge.
[scriptable, uuid(a589d96f-7e09-4edf-a01a-eb4951f42f37)]
interface nsITCPSocketChild : nsISupports
{
// Tell the chrome process to open a corresponding connection with the given parameters
[implicit_jscontext]
void open(in nsITCPSocketInternal socket, in DOMString host,
in unsigned short port, in boolean ssl, in DOMString binaryType,
in nsIDOMWindow window, in jsval socketVal);
// Tell the chrome process to perform equivalent operations to all following methods
[implicit_jscontext] void send(in jsval data);
void resume();
void suspend();
void close();
};