| Index: content/browser/media/capture/web_contents_video_capture_device.cc
|
| diff --git a/content/browser/media/capture/web_contents_video_capture_device.cc b/content/browser/media/capture/web_contents_video_capture_device.cc
|
| index 3bd7906b18b3730fca3ecc1305b144f80f3cc7a3..1d87f01097a518b2b397e32b370b74f9e2593d1a 100644
|
| --- a/content/browser/media/capture/web_contents_video_capture_device.cc
|
| +++ b/content/browser/media/capture/web_contents_video_capture_device.cc
|
| @@ -147,7 +147,7 @@ class FrameSubscriber : public RenderWidgetHostViewFrameSubscriber {
|
| base::TimeTicks present_time,
|
| scoped_refptr<media::VideoFrame>* storage,
|
| RenderWidgetHostViewFrameSubscriber::DeliverFrameCallback*
|
| - deliver_frame_cb) OVERRIDE;
|
| + deliver_frame_cb) override;
|
|
|
| private:
|
| const VideoCaptureOracle::Event event_type_;
|
| @@ -190,7 +190,7 @@ class ContentCaptureSubscription : public content::NotificationObserver {
|
| // content::NotificationObserver implementation.
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) OVERRIDE;
|
| + const content::NotificationDetails& details) override;
|
|
|
| private:
|
| void OnTimer();
|
| @@ -233,8 +233,8 @@ class WebContentsCaptureMachine : public VideoCaptureMachine {
|
|
|
| // VideoCaptureMachine overrides.
|
| virtual bool Start(const scoped_refptr<ThreadSafeCaptureOracle>& oracle_proxy,
|
| - const media::VideoCaptureParams& params) OVERRIDE;
|
| - virtual void Stop(const base::Closure& callback) OVERRIDE;
|
| + const media::VideoCaptureParams& params) override;
|
| + virtual void Stop(const base::Closure& callback) override;
|
|
|
| // Starts a copy from the backing store or the composited surface. Must be run
|
| // on the UI BrowserThread. |deliver_frame_cb| will be run when the operation
|
|
|