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

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

Issue 1106563002: FakeVideoCaptureDevice: add support for capturing into Dma-Bufs using VGEM in CrOs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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: 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 14fa1ff55b01cff70f851caf0344bfa3ef4d707b..47625e312febc2a32a4745e505a3fcccfb282fe8 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
@@ -394,6 +394,7 @@ class StubClient : public media::VideoCaptureDevice::Client {
size_t size() const override { return buffer_handle_->size(); }
void* data() override { return buffer_handle_->data(); }
ClientBuffer AsClientBuffer() override { return nullptr; }
+ base::PlatformFile AsPlatformFile() override { return 0; }
private:
~AutoReleaseBuffer() override { pool_->RelinquishProducerReservation(id_); }

Powered by Google App Engine
This is Rietveld 408576698