Index: content/browser/media/capture/desktop_capture_device_unittest.cc |
diff --git a/content/browser/media/capture/desktop_capture_device_unittest.cc b/content/browser/media/capture/desktop_capture_device_unittest.cc |
index 6a131014138dc7c8f6d3dcf52a0c6ae234b50524..0c25bb7802bc3bff2ce700305c4358d76c5c72fd 100644 |
--- a/content/browser/media/capture/desktop_capture_device_unittest.cc |
+++ b/content/browser/media/capture/desktop_capture_device_unittest.cc |
@@ -78,8 +78,10 @@ class MockDeviceClient : public media::VideoCaptureDevice::Client { |
MOCK_METHOD1(OnError, void(const std::string& reason)); |
// Trampoline methods to workaround GMOCK problems with scoped_ptr<>. |
- scoped_ptr<Buffer> ReserveOutputBuffer(media::VideoPixelFormat format, |
- const gfx::Size& dimensions) override { |
+ scoped_ptr<Buffer> ReserveOutputBuffer( |
+ const gfx::Size& dimensions, |
+ media::VideoPixelFormat format, |
+ media::VideoPixelStorage storage) override { |
DoReserveOutputBuffer(); |
hubbe
2015/06/18 19:23:10
CHECK/EXPECT input values?
mcasas
2015/06/19 02:58:35
Done.
|
return scoped_ptr<Buffer>(); |
} |