| Index: content/browser/renderer_host/media/video_capture_device_impl.h
|
| diff --git a/content/browser/renderer_host/media/video_capture_device_impl.h b/content/browser/renderer_host/media/video_capture_device_impl.h
|
| index d2c03f50a2cd1ad51f6b6f60836b3260093ace42..56192e0a04b20e6963bbd4a729bd0401596cd5cd 100644
|
| --- a/content/browser/renderer_host/media/video_capture_device_impl.h
|
| +++ b/content/browser/renderer_host/media/video_capture_device_impl.h
|
| @@ -15,6 +15,12 @@
|
| #include "content/common/content_export.h"
|
| #include "media/video/capture/video_capture_device.h"
|
|
|
| +namespace media {
|
| +
|
| +class VideoFrame;
|
| +
|
| +} // namespace media
|
| +
|
| namespace content {
|
|
|
| const int kMinFrameWidth = 2;
|
| @@ -79,7 +85,8 @@ class ThreadSafeCaptureOracle
|
|
|
| // Callback invoked on completion of all captures.
|
| void DidCaptureFrame(
|
| - scoped_refptr<media::VideoCaptureDevice::Client::Buffer> buffer,
|
| + const scoped_refptr<media::VideoCaptureDevice::Client::Buffer>& buffer,
|
| + const scoped_refptr<media::VideoFrame>& frame,
|
| int frame_number,
|
| base::TimeTicks timestamp,
|
| bool success);
|
|
|