Index: Source/core/events/AutocompleteErrorEvent.h |
diff --git a/Source/core/events/AutocompleteErrorEvent.h b/Source/core/events/AutocompleteErrorEvent.h |
index 1eed01deb6f19439c581d8527500b413420c5d67..847f257a6961fd2021c7177614afd3f565132c93 100644 |
--- a/Source/core/events/AutocompleteErrorEvent.h |
+++ b/Source/core/events/AutocompleteErrorEvent.h |
@@ -34,7 +34,7 @@ struct AutocompleteErrorEventInit : public EventInit { |
String reason; |
}; |
-class AutocompleteErrorEvent : public Event { |
+class AutocompleteErrorEvent FINAL : public Event { |
public: |
static PassRefPtr<AutocompleteErrorEvent> create() |
{ |
@@ -53,7 +53,7 @@ public: |
const String& reason() const { return m_reason; } |
- virtual const AtomicString& interfaceName() const { return EventNames::AutocompleteErrorEvent; } |
+ virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::AutocompleteErrorEvent; } |
private: |
AutocompleteErrorEvent() |