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

Unified Diff: content/renderer/screen_orientation/screen_orientation_observer.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_observer.h
diff --git a/content/renderer/screen_orientation/screen_orientation_observer.h b/content/renderer/screen_orientation/screen_orientation_observer.h
index 1c6b5bf932acee7f3857d51b9b7bc4e37b369859..bb481659fae22176b34cd3688990b3963f2a10f0 100644
--- a/content/renderer/screen_orientation/screen_orientation_observer.h
+++ b/content/renderer/screen_orientation/screen_orientation_observer.h
@@ -22,11 +22,11 @@ class ScreenOrientationObserver
virtual ~ScreenOrientationObserver();
// Overriding this method just to make sure |listener| is always null.
- virtual void Start(blink::WebPlatformEventListener* listener) OVERRIDE;
+ virtual void Start(blink::WebPlatformEventListener* listener) override;
protected:
- virtual void SendStartMessage() OVERRIDE;
- virtual void SendStopMessage() OVERRIDE;
+ virtual void SendStartMessage() override;
+ virtual void SendStopMessage() override;
};
}; // namespace content

Powered by Google App Engine
This is Rietveld 408576698