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

Unified Diff: Source/core/storage/StorageEvent.h

Issue 132233004: Update remaining core classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « Source/core/storage/Storage.h ('k') | Source/core/testing/InspectorFrontendClientLocal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « Source/core/storage/Storage.h ('k') | Source/core/testing/InspectorFrontendClientLocal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698