dom/media/nsIMediaManager.idl

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/media/nsIMediaManager.idl	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,23 @@
     1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this file,
     1.6 + * You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.7 +
     1.8 +#include "nsISupports.idl"
     1.9 +
    1.10 +interface nsISupportsArray;
    1.11 +interface nsIDOMWindow;
    1.12 +
    1.13 +%{C++
    1.14 +#define NS_MEDIAMANAGERSERVICE_CID {0xabc622ea, 0x9655, 0x4123, {0x80, 0xd9, 0x22, 0x62, 0x1b, 0xdd, 0x54, 0x65}}
    1.15 +#define MEDIAMANAGERSERVICE_CONTRACTID "@mozilla.org/mediaManagerService;1"
    1.16 +%}
    1.17 +
    1.18 +[scriptable, builtinclass, uuid(2efff6ab-0e3e-4cc4-8f9b-4aaca59a1140)]
    1.19 +interface nsIMediaManagerService : nsISupports
    1.20 +{
    1.21 +  /* return a array of inner windows that have active captures */
    1.22 +  readonly attribute nsISupportsArray activeMediaCaptureWindows;
    1.23 +
    1.24 +  /* Get the capture state for the given window and all descendant windows (iframes, etc) */
    1.25 +  void mediaCaptureWindowState(in nsIDOMWindow aWindow, out boolean aVideo, out boolean aAudio);
    1.26 +};

mercurial