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

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

Issue 2757673005: Image Capture: MediaStreamTrack::applyConstraints() (Closed)
Patch Set: guidou@ and reillyg@ comments Created 3 years, 9 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
index 9b654baa654fb65a20e8ca18409f581f4c3daf1e..230944adf7576fb0db89b7fe8c44f7f9b5a03a5d 100644
--- a/third_party/WebKit/Source/modules/imagecapture/ImageCapture.idl
+++ b/third_party/WebKit/Source/modules/imagecapture/ImageCapture.idl
@@ -15,8 +15,8 @@
] interface ImageCapture {
readonly attribute MediaStreamTrack videoStreamTrack;
- [CallWith=ScriptState, RaisesException] Promise<PhotoCapabilities> getPhotoCapabilities();
- [CallWith=ScriptState, RaisesException] Promise<void> setOptions(PhotoSettings photoSettings);
- [CallWith=ScriptState, RaisesException] Promise<Blob> takePhoto();
- [CallWith=ScriptState, RaisesException] Promise<ImageBitmap> grabFrame();
+ [CallWith=ScriptState] Promise<PhotoCapabilities> getPhotoCapabilities();
+ [CallWith=ScriptState] Promise<void> setOptions(PhotoSettings photoSettings);
+ [CallWith=ScriptState] Promise<Blob> takePhoto();
+ [CallWith=ScriptState] Promise<ImageBitmap> grabFrame();
};

Powered by Google App Engine
This is Rietveld 408576698