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 84813dad3f3681e6e05021d9577861f68871215a..d63d8dcdf268cba35cd8a5be979f9253100783b1 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 |
@@ -323,6 +323,18 @@ class StubClient : public media::VideoCaptureDevice::Client { |
FAIL(); |
} |
+ void OnIncomingCapturedYuvData(const uint8* y_data, |
+ const uint8* u_data, |
+ const uint8* v_data, |
+ int y_length, |
+ int u_length, |
+ int v_length, |
+ const media::VideoCaptureFormat& frame_format, |
+ int clockwise_rotation, |
+ const base::TimeTicks& timestamp) override { |
+ FAIL(); |
+ } |
+ |
scoped_refptr<media::VideoCaptureDevice::Client::Buffer> ReserveOutputBuffer( |
media::VideoFrame::Format format, |
const gfx::Size& dimensions) override { |