michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: [scriptable, uuid(98e31d3b-6cad-4cab-b4b3-4afff566ea65)] michael@0: interface nsINetworkEventListener : nsISupports { michael@0: void onEvent(in jsval result); michael@0: }; michael@0: michael@0: [scriptable, uuid(f9d9c694-0aac-4f9a-98ac-7788f954239a)] michael@0: interface nsINetworkWorker : nsISupports { michael@0: void start(in nsINetworkEventListener listener); michael@0: void shutdown(); michael@0: [implicit_jscontext] michael@0: void postMessage(in jsval options); michael@0: };