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

Unified Diff: content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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/screen_orientation/screen_orientation_dispatcher_host_impl.h
diff --git a/content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h b/content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h
index 376663124dc36686d5adf74eeca1ba0eb27d2db7..c22d65bd3556e79af9dc7dc9a2839363d49d53a7 100644
--- a/content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h
+++ b/content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h
@@ -27,16 +27,16 @@ class CONTENT_EXPORT ScreenOrientationDispatcherHostImpl
virtual ~ScreenOrientationDispatcherHostImpl();
// ScreenOrientationDispatcherHost:
- virtual void NotifyLockSuccess(int request_id) OVERRIDE;
+ virtual void NotifyLockSuccess(int request_id) override;
virtual void NotifyLockError(int request_id,
- blink::WebLockOrientationError error) OVERRIDE;
- virtual void OnOrientationChange() OVERRIDE;
+ blink::WebLockOrientationError error) override;
+ virtual void OnOrientationChange() override;
// WebContentsObserver:
virtual bool OnMessageReceived(const IPC::Message&,
- RenderFrameHost* render_frame_host) OVERRIDE;
+ RenderFrameHost* render_frame_host) override;
virtual void DidNavigateMainFrame(const LoadCommittedDetails& details,
- const FrameNavigateParams& params) OVERRIDE;
+ const FrameNavigateParams& params) override;
private:
void OnLockRequest(RenderFrameHost* render_frame_host,

Powered by Google App Engine
This is Rietveld 408576698