Bug 1706453 - Reword mediaCaptureWindowState docstring to make clear it's not recursive. r=jib DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D114536
This commit is contained in:
Bryce Seager van Dyk 2021-05-10 17:25:12 +00:00
Родитель 54387b248a
Коммит a5fac76104
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -24,8 +24,9 @@ interface nsIMediaManagerService : nsISupports
const unsigned short STATE_CAPTURE_ENABLED = 1;
const unsigned short STATE_CAPTURE_DISABLED = 2;
/* Get the capture state for the given window and, optionally, all descendant
* windows (iframes, etc).
/* Get the capture state for the given window. This will not check
* descendants, such as iframes. Callers who need to check descendants should
* iterate descendants manually and call this on each.
*/
void mediaCaptureWindowState(in nsIDOMWindow aWindow,
out unsigned short aCamera,