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

Unified Diff: media/video/capture/fake_video_capture_device_unittest.cc

Issue 1124723006: VideoCaptureDeviceLinux: Add support for SPLANE+DMABUF V4L2 type capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 6 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/video/capture/fake_video_capture_device_unittest.cc
diff --git a/media/video/capture/fake_video_capture_device_unittest.cc b/media/video/capture/fake_video_capture_device_unittest.cc
index 8890454f366eee76f06404837674b991665d265e..8d7c96ac339692574d366548101564cb93ba6532 100644
--- a/media/video/capture/fake_video_capture_device_unittest.cc
+++ b/media/video/capture/fake_video_capture_device_unittest.cc
@@ -42,6 +42,9 @@ class MockBuffer : public VideoCaptureDevice::Client::Buffer {
gfx::GpuMemoryBufferType GetType() override {
return gfx::SHARED_MEMORY_BUFFER;
}
+ base::PlatformFile AsPlatformFile() const override {
+ return base::PlatformFile();
+ }
ClientBuffer AsClientBuffer() override { return nullptr; }
private:

Powered by Google App Engine
This is Rietveld 408576698