Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

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

Issue 2747573002: Image Capture: MediaStreamTrack::getCapabilities() (Closed)
Patch Set: haraken@ and reillyg@s comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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 dictionary MediaTrackCapabilities {
6 // W3C Image Capture API
7 // https://w3c.github.io/mediacapture-image/#mediatrackcapabilities-section
8 // TODO(mcasas) move out when partial dictionaries are supported
9 // http://crbug.com/579896.
10 [RuntimeEnabled=ImageCapture] sequence<DOMString> whiteBalanceMode;
11 [RuntimeEnabled=ImageCapture] sequence<DOMString> exposureMode;
12 [RuntimeEnabled=ImageCapture] sequence<DOMString> focusMode;
13 [RuntimeEnabled=ImageCapture] MediaSettingsRange exposureCompensation;
14 [RuntimeEnabled=ImageCapture] MediaSettingsRange colorTemperature;
15 [RuntimeEnabled=ImageCapture] MediaSettingsRange iso;
16 [RuntimeEnabled=ImageCapture] MediaSettingsRange brightness;
17 [RuntimeEnabled=ImageCapture] MediaSettingsRange contrast;
18 [RuntimeEnabled=ImageCapture] MediaSettingsRange saturation;
19 [RuntimeEnabled=ImageCapture] MediaSettingsRange sharpness;
20 [RuntimeEnabled=ImageCapture] MediaSettingsRange zoom;
21 [RuntimeEnabled=ImageCapture] boolean torch;
22 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698