michael@0: /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ michael@0: /* vim: set sw=4 ts=4 et tw=80 : */ 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: interface nsIStreamingProtocolController; michael@0: interface nsIChannel; michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: %{C++ michael@0: #define NS_MEDIASTREAMCONTROLLERSERVICE_CID \ michael@0: { 0x94838530, 0x8627, 0x11e2, \ michael@0: { \ michael@0: 0x9e, 0x96, 0x08, 0x00, \ michael@0: 0x20, 0x0c, 0x9a, 0x66 \ michael@0: } \ michael@0: } michael@0: #define MEDIASTREAMCONTROLLERSERVICE_CONTRACTID \ michael@0: "@mozilla.org/mediastream/mediastreamcontrollerservice;1" michael@0: %} michael@0: michael@0: /** michael@0: * Media stream controller Service API. michael@0: */ michael@0: [uuid(94838530-8627-11e2-9e96-0800200c9a66)] michael@0: interface nsIStreamingProtocolControllerService : nsISupports michael@0: { michael@0: /* michael@0: * Create a new media stream controller from the given channel. michael@0: * @param channel nsIChannel for the given URI. michael@0: */ michael@0: nsIStreamingProtocolController create(in nsIChannel channel); michael@0: };