| 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,
|
|
|