mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-29 21:25:35 +00:00
758a8d47ef
MozReview-Commit-ID: JVZO5mlxvgW --HG-- extra : rebase_source : da18976304f0483037acb7e271448b64fbd16935 extra : intermediate-source : d48bc6eca9c32c8fd9cf095e650febb09e0affce extra : source : ba0529f6b0733534d50fa842dfebd52c6b477140
20 lines
690 B
Plaintext
20 lines
690 B
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/.
|
|
*
|
|
* The origin of this IDL file is
|
|
* http://dev.w3.org/2011/webrtc/editor/webrtc.html#mediastreamevent
|
|
*/
|
|
|
|
dictionary MediaStreamTrackEventInit : EventInit {
|
|
required MediaStreamTrack track;
|
|
};
|
|
|
|
[Exposed=Window,
|
|
Constructor (DOMString type, MediaStreamTrackEventInit eventInitDict)]
|
|
interface MediaStreamTrackEvent : Event {
|
|
[SameObject]
|
|
readonly attribute MediaStreamTrack track;
|
|
};
|