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

Unified Diff: media/capture/video/fake_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: media/capture/video/fake_video_capture_device_unittest.cc
diff --git a/media/capture/video/fake_video_capture_device_unittest.cc b/media/capture/video/fake_video_capture_device_unittest.cc
index 8830c7dc1213fc4604b5becefc9632464a66e9f3..1e4b84f96183939c750dfb57f041fd8442c817dd 100644
--- a/media/capture/video/fake_video_capture_device_unittest.cc
+++ b/media/capture/video/fake_video_capture_device_unittest.cc
@@ -53,6 +53,8 @@ class MockBuffer : public VideoCaptureDevice::Client::Buffer {
return base::FileDescriptor();
}
#endif
+ bool IsBackedByVideoFrame() const override { return false; };
+ scoped_refptr<VideoFrame> GetVideoFrame() override { return nullptr; }
private:
const int id_;

Powered by Google App Engine
This is Rietveld 408576698