Chromium Code Reviews| Index: third_party/WebKit/Source/modules/mediastream/MediaTrackConstraintSet.idl |
| diff --git a/third_party/WebKit/Source/modules/mediastream/MediaTrackConstraintSet.idl b/third_party/WebKit/Source/modules/mediastream/MediaTrackConstraintSet.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..89683b8dd88308bdaff061d7ef42237aad93c2ca |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/mediastream/MediaTrackConstraintSet.idl |
| @@ -0,0 +1,13 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// Specification: |
| +// https://w3c.github.io/mediacapture-main/getusermedia.html#idl-def-MediaTrackConstraintSet |
| + |
| +dictionary MediaTrackConstraintSet { |
| + // The "mandatory" and "optional" members are retained for conformance |
|
Peter Beverloo
2015/10/08 09:50:25
micro nit: optional -> _optional
hta - Chromium
2015/10/09 13:02:28
Done.
|
| + // with http://www.w3.org/TR/2013/WD-mediacapture-streams-20130903/ |
| + Dictionary mandatory; |
| + sequence<Dictionary> _optional; |
| +}; |