Chromium Code Reviews

Side by Side Diff: third_party/WebKit/Source/modules/mediastream/ConstrainDOMStringParameters.idl

Issue 1977513004: Adds multiple forms of MediaStreamTrack constraints (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing blink::, using explicit conversions in test Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
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 };
OLDNEW

Powered by Google App Engine