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

Unified Diff: content/renderer/screen_orientation/screen_orientation_dispatcher.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (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/renderer/screen_orientation/screen_orientation_dispatcher.h
diff --git a/content/renderer/screen_orientation/screen_orientation_dispatcher.h b/content/renderer/screen_orientation/screen_orientation_dispatcher.h
index fe215b936f11ed69354e165568d209c72858beb9..21dbf516a9653a14fc1d66a2e862d47c1952792f 100644
--- a/content/renderer/screen_orientation/screen_orientation_dispatcher.h
+++ b/content/renderer/screen_orientation/screen_orientation_dispatcher.h
@@ -33,13 +33,13 @@ class CONTENT_EXPORT ScreenOrientationDispatcher :
friend class ScreenOrientationDispatcherTest;
// RenderFrameObserver implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
// blink::WebScreenOrientationClient implementation.
virtual void lockOrientation(
blink::WebScreenOrientationLockType orientation,
- blink::WebLockOrientationCallback* callback) OVERRIDE;
- virtual void unlockOrientation() OVERRIDE;
+ blink::WebLockOrientationCallback* callback) override;
+ virtual void unlockOrientation() override;
void OnLockSuccess(int request_id);
void OnLockError(int request_id,

Powered by Google App Engine
This is Rietveld 408576698