Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Specification: | |
| 6 // https://w3c.github.io/mediacapture-main/getusermedia.html#idl-def-MediaTrackC onstraintSet | |
| 7 | |
| 8 dictionary MediaTrackConstraintSet { | |
| 9 // 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.
| |
| 10 // with http://www.w3.org/TR/2013/WD-mediacapture-streams-20130903/ | |
| 11 Dictionary mandatory; | |
| 12 sequence<Dictionary> _optional; | |
| 13 }; | |
| OLD | NEW |