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

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

Issue 670683003: Standardize usage of virtual/override/final 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 bb481659fae22176b34cd3688990b3963f2a10f0..48cca8c08c4b2559451d17247348b7ff2cb82794 100644
--- a/content/renderer/screen_orientation/screen_orientation_observer.h
+++ b/content/renderer/screen_orientation/screen_orientation_observer.h
@@ -19,14 +19,14 @@ class ScreenOrientationObserver
: public PlatformEventObserver<blink::WebPlatformEventListener> {
public:
ScreenOrientationObserver();
- virtual ~ScreenOrientationObserver();
+ ~ScreenOrientationObserver() override;
// Overriding this method just to make sure |listener| is always null.
- virtual void Start(blink::WebPlatformEventListener* listener) override;
+ void Start(blink::WebPlatformEventListener* listener) override;
protected:
- virtual void SendStartMessage() override;
- virtual void SendStopMessage() override;
+ void SendStartMessage() override;
+ void SendStopMessage() override;
};
}; // namespace content

Powered by Google App Engine
This is Rietveld 408576698