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

Unified Diff: content/browser/media/capture/web_contents_video_capture_device_unittest.cc

Issue 2378943002: Let clients interact with VideoCaptureDeviceClient instead of VideoCaptureDevice (Closed)
Patch Set: mcasas comments Created 4 years, 2 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: content/browser/media/capture/web_contents_video_capture_device_unittest.cc
diff --git a/content/browser/media/capture/web_contents_video_capture_device_unittest.cc b/content/browser/media/capture/web_contents_video_capture_device_unittest.cc
index 922ce7c835de6b16022b40a45b76972ee3201bf0..1f0583d0be85e854689ec39d96e53e49e01a4943 100644
--- a/content/browser/media/capture/web_contents_video_capture_device_unittest.cc
+++ b/content/browser/media/capture/web_contents_video_capture_device_unittest.cc
@@ -448,6 +448,12 @@ class StubClient : public media::VideoCaptureDevice::Client {
return base::FileDescriptor();
}
#endif
+ bool IsBackedByVideoFrame() const override {
+ return buffer_handle_->IsBackedByVideoFrame();
+ }
+ scoped_refptr<media::VideoFrame> GetVideoFrame() override {
+ return buffer_handle_->GetVideoFrame();
+ }
private:
~AutoReleaseBuffer() override { pool_->RelinquishProducerReservation(id_); }

Powered by Google App Engine
This is Rietveld 408576698