Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 };