Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* vim: set sw=4 ts=4 et tw=80 : */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 interface nsIStreamingProtocolController;
8 interface nsIChannel;
10 #include "nsISupports.idl"
12 %{C++
13 #define NS_MEDIASTREAMCONTROLLERSERVICE_CID \
14 { 0x94838530, 0x8627, 0x11e2, \
15 { \
16 0x9e, 0x96, 0x08, 0x00, \
17 0x20, 0x0c, 0x9a, 0x66 \
18 } \
19 }
20 #define MEDIASTREAMCONTROLLERSERVICE_CONTRACTID \
21 "@mozilla.org/mediastream/mediastreamcontrollerservice;1"
22 %}
24 /**
25 * Media stream controller Service API.
26 */
27 [uuid(94838530-8627-11e2-9e96-0800200c9a66)]
28 interface nsIStreamingProtocolControllerService : nsISupports
29 {
30 /*
31 * Create a new media stream controller from the given channel.
32 * @param channel nsIChannel for the given URI.
33 */
34 nsIStreamingProtocolController create(in nsIChannel channel);
35 };