| Index: content/browser/media/capture/web_contents_tracker.h
|
| diff --git a/content/browser/media/capture/web_contents_tracker.h b/content/browser/media/capture/web_contents_tracker.h
|
| index 47d7e18866a931dc185634adf568fe2e9c3175b1..799e69556c1a7ffb844b1d5d3f0aa443504bffa9 100644
|
| --- a/content/browser/media/capture/web_contents_tracker.h
|
| +++ b/content/browser/media/capture/web_contents_tracker.h
|
| @@ -82,18 +82,18 @@ class CONTENT_EXPORT WebContentsTracker
|
| // WebContentsObserver overrides: According to web_contents_observer.h, these
|
| // two method overrides are all that is necessary to track the set of active
|
| // RenderFrameHosts.
|
| - virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) OVERRIDE;
|
| + virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) override;
|
| virtual void RenderFrameHostChanged(RenderFrameHost* old_host,
|
| - RenderFrameHost* new_host) OVERRIDE;
|
| + RenderFrameHost* new_host) override;
|
|
|
| // WebContentsObserver override to notify the client that the capture target
|
| // has been permanently lost.
|
| - virtual void WebContentsDestroyed() OVERRIDE;
|
| + virtual void WebContentsDestroyed() override;
|
|
|
| // WebContentsObserver overrides to notify the client that the capture target
|
| // may have changed due to a separate fullscreen widget shown/destroyed.
|
| - virtual void DidShowFullscreenWidget(int routing_id) OVERRIDE;
|
| - virtual void DidDestroyFullscreenWidget(int routing_id) OVERRIDE;
|
| + virtual void DidShowFullscreenWidget(int routing_id) override;
|
| + virtual void DidDestroyFullscreenWidget(int routing_id) override;
|
|
|
| // If true, the client is interested in the showing/destruction of fullscreen
|
| // RenderWidgetHosts.
|
|
|