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 file, michael@0: * You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: /** michael@0: * Information about networks that is exposed to network manager API consumers. michael@0: */ michael@0: [scriptable, builtinclass, uuid(a9ea96a0-407d-11e3-aa6e-0800200c9a66)] michael@0: interface nsISystemWorkerManager : nsISupports michael@0: { michael@0: [implicit_jscontext] michael@0: void registerRilWorker(in unsigned long aClientId, michael@0: in jsval aWorker); michael@0: michael@0: [implicit_jscontext] michael@0: void registerNfcWorker(in jsval aWorker); michael@0: };