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

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

Issue 1899403002: MediaStream Image Capture (2): Platform::ImageCaptureFrameGrabber and grabFrame() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. LayoutTests: Replace assert_array_equals with an for-each: assert_aprox_equals 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.h
diff --git a/third_party/WebKit/Source/modules/imagecapture/ImageCapture.h b/third_party/WebKit/Source/modules/imagecapture/ImageCapture.h
index fd89bd0d8188d15d642b313885cbcb23a52800ab..16633e5bef94b7a9f0d52b219f96035825dd7586 100644
--- a/third_party/WebKit/Source/modules/imagecapture/ImageCapture.h
+++ b/third_party/WebKit/Source/modules/imagecapture/ImageCapture.h
@@ -17,6 +17,7 @@ namespace blink {
class ExceptionState;
class MediaStreamTrack;
+class WebImageCaptureFrameGrabber;
// TODO(mcasas): Consideradding a LayoutTest checking that this class is not
// garbage collected while it has event listeners.
@@ -53,6 +54,7 @@ private:
bool addEventListenerInternal(const AtomicString& eventType, EventListener*, const EventListenerOptions&) override;
Member<MediaStreamTrack> m_streamTrack;
+ OwnPtr<WebImageCaptureFrameGrabber> m_frameGrabber;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698