blob: 9f70ed62bde7f9ee45842bb2c9028babd2c73f3a [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://w3c.github.io/mediacapture-image/#ImageCaptureAPI
[
ActiveScriptWrappable,
Exposed=Window
] interface ImageCapture {
[CallWith=ExecutionContext, RaisesException, MeasureAs=ImageCaptureConstructor] constructor(MediaStreamTrack track);
[ImplementedAs=videoStreamTrack] readonly attribute MediaStreamTrack track;
[CallWith=ScriptState] Promise<PhotoCapabilities> getPhotoCapabilities();
[CallWith=ScriptState] Promise<PhotoSettings> getPhotoSettings();
[CallWith=ScriptState] Promise<Blob> takePhoto(optional PhotoSettings photoSettings = {});
[CallWith=ScriptState] Promise<ImageBitmap> grabFrame();
};