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

Unified Diff: content/browser/media/capture/web_contents_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: 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 02b297f35e07f3eb491911698c07f49a46162fde..357e0888c4d0189fcc6b18dc14525024db6bd100 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
@@ -417,6 +417,9 @@ class StubClient : public media::VideoCaptureDevice::Client {
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