| Index: third_party/WebKit/Source/modules/imagecapture/ImageCapture.idl
|
| diff --git a/third_party/WebKit/Source/modules/imagecapture/ImageCapture.idl b/third_party/WebKit/Source/modules/imagecapture/ImageCapture.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c5c7655273f0b5613ad8f70c52d4a904029e2b04
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/modules/imagecapture/ImageCapture.idl
|
| @@ -0,0 +1,17 @@
|
| +// 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/index.html
|
| +
|
| +[
|
| + ActiveScriptWrappable,
|
| + ConstructorCallWith=ExecutionContext,
|
| + Constructor(MediaStreamTrack track),
|
| + RaisesException=Constructor,
|
| + RuntimeEnabled=ImageCapture,
|
| +] interface ImageCapture {
|
| + readonly attribute MediaStreamTrack videoStreamTrack;
|
| +
|
| + [CallWith=ScriptState, RaisesException] Promise<ImageBitmap> grabFrame();
|
| +};
|
|
|