| Index: content/browser/media/capture/content_video_capture_device_core.h
|
| diff --git a/content/browser/media/capture/content_video_capture_device_core.h b/content/browser/media/capture/content_video_capture_device_core.h
|
| index c8c69c87e8fff93678fced955afb26b910f1440d..992caa74b6ce360c890be5e0ec5d96226fca1918 100644
|
| --- a/content/browser/media/capture/content_video_capture_device_core.h
|
| +++ b/content/browser/media/capture/content_video_capture_device_core.h
|
| @@ -15,6 +15,10 @@
|
| #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;
|
| @@ -82,7 +86,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);
|
|
|