Index: Source/core/events/GestureEvent.h |
diff --git a/Source/core/events/GestureEvent.h b/Source/core/events/GestureEvent.h |
index fe982006c92f8c936949df13e8dff6795b6add49..6d389093a4d94aa010bd6bd8b2452505099007cc 100644 |
--- a/Source/core/events/GestureEvent.h |
+++ b/Source/core/events/GestureEvent.h |
@@ -32,7 +32,7 @@ |
namespace WebCore { |
-class GestureEvent : public MouseRelatedEvent { |
+class GestureEvent FINAL : public MouseRelatedEvent { |
public: |
virtual ~GestureEvent() { } |
@@ -43,7 +43,7 @@ public: |
virtual bool isGestureEvent() const OVERRIDE; |
- virtual const AtomicString& interfaceName() const; |
+ virtual const AtomicString& interfaceName() const OVERRIDE; |
float deltaX() const { return m_deltaX; } |
float deltaY() const { return m_deltaY; } |
@@ -56,7 +56,7 @@ private: |
float m_deltaY; |
}; |
-class GestureEventDispatchMediator : public EventDispatchMediator { |
+class GestureEventDispatchMediator FINAL : public EventDispatchMediator { |
public: |
static PassRefPtr<GestureEventDispatchMediator> create(PassRefPtr<GestureEvent> gestureEvent) |
{ |