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

Unified Diff: Source/modules/screen_orientation/ScreenOrientation.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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: Source/modules/screen_orientation/ScreenOrientation.h
diff --git a/Source/modules/screen_orientation/ScreenOrientation.h b/Source/modules/screen_orientation/ScreenOrientation.h
index 8007f34c36976a181291e435db9b9953efeb4d17..a813e36330f3db5b8ed690b6435f67fca54578d6 100644
--- a/Source/modules/screen_orientation/ScreenOrientation.h
+++ b/Source/modules/screen_orientation/ScreenOrientation.h
@@ -30,11 +30,11 @@ class ScreenOrientation final
public:
static ScreenOrientation* create(LocalFrame*);
- virtual ~ScreenOrientation();
+ ~ScreenOrientation() override;
// EventTarget implementation.
- virtual const WTF::AtomicString& interfaceName() const override;
- virtual ExecutionContext* executionContext() const override;
+ const WTF::AtomicString& interfaceName() const override;
+ ExecutionContext* executionContext() const override;
String type() const;
unsigned short angle() const;

Powered by Google App Engine
This is Rietveld 408576698