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

Unified Diff: Source/modules/device_orientation/DeviceOrientationEvent.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/DeviceOrientationEvent.h
diff --git a/Source/modules/device_orientation/DeviceOrientationEvent.h b/Source/modules/device_orientation/DeviceOrientationEvent.h
index 66053f2bb7373e16147fba68aa10adea3a39a3c5..373f1c590660148adb580598af1f2b8e6c0170ae 100644
--- a/Source/modules/device_orientation/DeviceOrientationEvent.h
+++ b/Source/modules/device_orientation/DeviceOrientationEvent.h
@@ -32,7 +32,7 @@ namespace WebCore {
class DeviceOrientationData;
-class DeviceOrientationEvent : public Event {
+class DeviceOrientationEvent FINAL : public Event {
public:
~DeviceOrientationEvent();
static PassRefPtr<DeviceOrientationEvent> create()
@@ -53,7 +53,7 @@ public:
double gamma(bool& isNull) const;
bool absolute(bool& isNull) const;
- virtual const AtomicString& interfaceName() const;
+ virtual const AtomicString& interfaceName() const OVERRIDE;
private:
DeviceOrientationEvent();

Powered by Google App Engine
This is Rietveld 408576698