2012-12-22 12:09:36 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsISupportsArray;
|
2013-02-28 00:36:06 +04:00
|
|
|
interface nsIDOMWindow;
|
2012-12-22 12:09:36 +04:00
|
|
|
|
|
|
|
%{C++
|
|
|
|
#define NS_MEDIAMANAGERSERVICE_CID {0xabc622ea, 0x9655, 0x4123, {0x80, 0xd9, 0x22, 0x62, 0x1b, 0xdd, 0x54, 0x65}}
|
|
|
|
#define MEDIAMANAGERSERVICE_CONTRACTID "@mozilla.org/mediaManagerService;1"
|
|
|
|
%}
|
|
|
|
|
2015-03-29 08:42:32 +03:00
|
|
|
[scriptable, builtinclass, uuid(9b10661f-77b3-47f7-a8de-ee58daaff5d2)]
|
2012-12-22 12:09:36 +04:00
|
|
|
interface nsIMediaManagerService : nsISupports
|
|
|
|
{
|
2013-02-28 00:36:06 +04:00
|
|
|
/* return a array of inner windows that have active captures */
|
2012-12-22 12:09:36 +04:00
|
|
|
readonly attribute nsISupportsArray activeMediaCaptureWindows;
|
2013-02-28 00:36:06 +04:00
|
|
|
|
|
|
|
/* Get the capture state for the given window and all descendant windows (iframes, etc) */
|
2014-07-18 06:23:00 +04:00
|
|
|
void mediaCaptureWindowState(in nsIDOMWindow aWindow, out boolean aVideo, out boolean aAudio,
|
2014-08-25 19:01:19 +04:00
|
|
|
[optional] out boolean aScreenShare, [optional] out boolean aWindowShare,
|
2015-03-11 18:34:31 +03:00
|
|
|
[optional] out boolean aAppShare, [optional] out boolean aBrowserShare);
|
2012-12-22 12:09:36 +04:00
|
|
|
};
|