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

Unified Diff: third_party/WebKit/Source/modules/mediastream/MediaTrackSettings.idl

Issue 2748093002: Limit MediaTrackSettings to implemented features (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/mediastream/MediaTrackSettings.idl
diff --git a/third_party/WebKit/Source/modules/mediastream/MediaTrackSettings.idl b/third_party/WebKit/Source/modules/mediastream/MediaTrackSettings.idl
index f0121fa90c9a0991ff9eadd30e7171907aae5137..1d5c05fd1fcce9898932c032b5023837017fe2a2 100644
--- a/third_party/WebKit/Source/modules/mediastream/MediaTrackSettings.idl
+++ b/third_party/WebKit/Source/modules/mediastream/MediaTrackSettings.idl
@@ -7,17 +7,22 @@
dictionary MediaTrackSettings {
long width;
long height;
- double aspectRatio;
+ // aspectRatio is not implemented.
+ // double aspectRatio;
double frameRate;
DOMString facingMode;
- double volume;
- long sampleRate;
- long sampleSize;
- boolean echoCancellation;
- double latency;
- long channelCount;
+ // volume, sampleRate and sampleSize are not implemented.
+ // double volume;
+ // long sampleRate;
+ // long sampleSize;
+ // echoCancellation is not implemented: crbug.com/682245
+ // boolean echoCancellation;
+ // latency and channelCount are not implemented.
+ // double latency;
+ // long channelCount;
DOMString deviceId;
- DOMString groupId;
+ // groupId is not implemented.
+ // DOMString groupId;
// Media Capture Depth Stream Extensions
// https://w3c.github.io/mediacapture-depth/#mediatracksettings-dictionary
// TODO(aleksandar.stojiljkovic): videoKind, depthNear, depthFar,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698