OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // https://w3c.github.io/mediacapture-main/getusermedia.html#idl-def-ConstrainLo
ngRange | 5 // https://w3c.github.io/mediacapture-main/getusermedia.html#idl-def-ConstrainLo
ngRange |
6 | 6 |
7 dictionary ConstrainDOMStringParameters { | 7 dictionary ConstrainDOMStringParameters { |
8 sequence<DOMString> exact; | 8 (DOMString or sequence<DOMString>) exact; |
9 sequence<DOMString> ideal; | 9 (DOMString or sequence<DOMString>) ideal; |
10 // The spec says that the members should be: | |
11 // (DOMString or sequence<DOMString>) exact; | |
12 // (DOMString or sequence<DOMString>) ideal; | |
13 // This is blocked on https://crbug.com/524424 | |
14 }; | 10 }; |
OLD | NEW |