Index: Source/core/storage/StorageEvent.h |
diff --git a/Source/core/storage/StorageEvent.h b/Source/core/storage/StorageEvent.h |
index 2e6743a79d17e3009122d08437dfb08a844c25a3..dfe6b8a00627c2e949bccd16843ae43625908a7a 100644 |
--- a/Source/core/storage/StorageEvent.h |
+++ b/Source/core/storage/StorageEvent.h |
@@ -43,7 +43,7 @@ struct StorageEventInit : public EventInit { |
RefPtr<Storage> storageArea; |
}; |
-class StorageEvent : public Event { |
+class StorageEvent FINAL : public Event { |
public: |
static PassRefPtr<StorageEvent> create(); |
static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); |
@@ -62,7 +62,7 @@ public: |
// Needed once we support init<blank>EventNS |
// void initStorageEventNS(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in DOMString oldValueArg, in DOMString newValueArg, in DOMString urlArg, Storage storageAreaArg); |
- virtual const AtomicString& interfaceName() const; |
+ virtual const AtomicString& interfaceName() const OVERRIDE; |
private: |
StorageEvent(); |