2013-03-26 18:32:51 -07:00
|
|
|
/* -*- 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/getusermedia.html
|
|
|
|
*
|
|
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
2014-04-18 11:00:16 -07:00
|
|
|
dictionary MediaTrackConstraints : MediaTrackConstraintSet {
|
|
|
|
sequence<DOMString> require;
|
|
|
|
sequence<MediaTrackConstraintSet> advanced;
|
2014-04-18 12:14:23 -07:00
|
|
|
|
|
|
|
// mobile-only backwards-compatibility for facingMode
|
|
|
|
MobileLegacyMediaTrackConstraintSet mandatory;
|
|
|
|
sequence<MobileLegacyMediaTrackConstraintSet> _optional;
|
2013-09-15 23:34:57 -07:00
|
|
|
};
|
|
|
|
|
2014-04-18 12:14:44 -07:00
|
|
|
// TODO(jib): Remove in 6+ weeks (Bug 997365)
|
|
|
|
dictionary MobileLegacyMediaTrackConstraintSet {
|
|
|
|
VideoFacingModeEnum facingMode;
|
|
|
|
};
|
2014-04-18 11:00:16 -07:00
|
|
|
|
2013-03-26 18:32:51 -07:00
|
|
|
interface MediaStreamTrack {
|
|
|
|
readonly attribute DOMString kind;
|
|
|
|
readonly attribute DOMString id;
|
|
|
|
readonly attribute DOMString label;
|
2013-05-29 21:44:43 -07:00
|
|
|
attribute boolean enabled;
|
2013-03-26 18:32:51 -07:00
|
|
|
// readonly attribute MediaStreamTrackState readyState;
|
|
|
|
// readonly attribute SourceTypeEnum sourceType;
|
|
|
|
// readonly attribute DOMString sourceId;
|
|
|
|
// attribute EventHandler onstarted;
|
|
|
|
// attribute EventHandler onmute;
|
|
|
|
// attribute EventHandler onunmute;
|
|
|
|
// attribute EventHandler onended;
|
|
|
|
// any getConstraint (DOMString constraintName, optional boolean mandatory = false);
|
|
|
|
// void setConstraint (DOMString constraintName, any constraintValue, optional boolean mandatory = false);
|
|
|
|
// MediaTrackConstraints? constraints ();
|
|
|
|
// void applyConstraints (MediaTrackConstraints constraints);
|
|
|
|
// void prependConstraint (DOMString constraintName, any constraintValue);
|
|
|
|
// void appendConstraint (DOMString constraintName, any constraintValue);
|
|
|
|
// attribute EventHandler onoverconstrained;
|
|
|
|
// void stop ();
|
|
|
|
};
|