Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Unified Diff: content/browser/media/capture/web_contents_tracker.h

Issue 629963002: Replacing the OVERRIDE with override and FINAL with final in content/browser/media (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698