Index: Source/core/events/BeforeLoadEvent.h |
diff --git a/Source/core/events/BeforeLoadEvent.h b/Source/core/events/BeforeLoadEvent.h |
index f52c5377f2a2aa79e779625ffdf34f0eb143fed8..f4d5cd3cb151bc81cc47cb0b0919dd9caccb5cd7 100644 |
--- a/Source/core/events/BeforeLoadEvent.h |
+++ b/Source/core/events/BeforeLoadEvent.h |
@@ -40,7 +40,7 @@ struct BeforeLoadEventInit : public EventInit { |
String url; |
}; |
-class BeforeLoadEvent : public Event { |
+class BeforeLoadEvent FINAL : public Event { |
public: |
static PassRefPtr<BeforeLoadEvent> create() |
{ |
@@ -59,7 +59,7 @@ public: |
const String& url() const { return m_url; } |
- virtual const AtomicString& interfaceName() const { return EventNames::BeforeLoadEvent; } |
+ virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::BeforeLoadEvent; } |
private: |
BeforeLoadEvent() |