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

Unified Diff: Source/modules/device_orientation/DeviceMotionEvent.h

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ Created 6 years, 11 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/device_orientation/DeviceMotionEvent.h
diff --git a/Source/modules/device_orientation/DeviceMotionEvent.h b/Source/modules/device_orientation/DeviceMotionEvent.h
index c638f57dc3ba04fbcc6b76afc13641bb0c60ccaa..3957cf4b4ce11ed37ce3f6500c8e2d32113f9a7d 100644
--- a/Source/modules/device_orientation/DeviceMotionEvent.h
+++ b/Source/modules/device_orientation/DeviceMotionEvent.h
@@ -34,7 +34,7 @@ class DeviceAcceleration;
class DeviceMotionData;
class DeviceRotationRate;
-class DeviceMotionEvent : public Event {
+class DeviceMotionEvent FINAL : public Event {
public:
~DeviceMotionEvent();
static PassRefPtr<DeviceMotionEvent> create()
@@ -55,7 +55,7 @@ public:
DeviceRotationRate* rotationRate();
double interval(bool& isNull) const;
- virtual const AtomicString& interfaceName() const;
+ virtual const AtomicString& interfaceName() const OVERRIDE;
private:
DeviceMotionEvent();

Powered by Google App Engine
This is Rietveld 408576698