Re: [mediacapture-image] Use partial MediaStreamTrack instead of separate ImageCapture interface

I guess @travisleithead's idea would be to move the remaining methods to something like:

```js
partial interface MediaStreamTrack {
```
or maybe
```js
interface VideoStreamTrack : MediaStreamTrack {
   Promise<Blob>              takePhoto(optional PhotoSettings photoSettings);
   Promise<PhotoCapabilities> getPhotoCapabilities();
   Promise<ImageBitmap>       grabFrame();
};
```
?

-- 
GitHub Notification of comment by jan-ivar
Please view or discuss this issue at https://github.com/w3c/mediacapture-image/issues/142#issuecomment-288165082 using your GitHub account

Received on Tuesday, 21 March 2017 17:57:01 UTC