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

Unified Diff: third_party/WebKit/Source/modules/imagecapture/ImageCapture.idl

Issue 1890313002: MediaStream Image Capture (1): idl and wireframe .h/.cpp/LayoutTest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added TODO for the mentioned LayoutTests Created 4 years, 8 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
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();
+};
« no previous file with comments | « third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp ('k') | third_party/WebKit/Source/modules/modules.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698