2012-06-03 11:35:15 +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"
|
2012-09-20 23:54:00 +04:00
|
|
|
#include "nsIVariant.idl"
|
2012-06-03 11:35:15 +04:00
|
|
|
|
2016-08-18 07:01:00 +03:00
|
|
|
[scriptable, builtinclass, uuid(ba3b2e08-1c07-4cd3-8822-f4d7e35ff2ae)]
|
2012-09-20 23:54:00 +04:00
|
|
|
interface nsIMediaDevice : nsISupports
|
|
|
|
{
|
2018-09-06 11:02:43 +03:00
|
|
|
readonly attribute AString type;
|
|
|
|
readonly attribute AString name;
|
|
|
|
readonly attribute AString id;
|
|
|
|
readonly attribute AString mediaSource;
|
|
|
|
readonly attribute AString rawId;
|
2019-03-08 14:51:45 +03:00
|
|
|
readonly attribute AString groupId;
|
2016-09-29 22:37:25 +03:00
|
|
|
readonly attribute boolean scary;
|
2012-09-20 23:54:00 +04:00
|
|
|
};
|