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

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

Issue 638493002: Replacing the OVERRIDE with override and FINAL with final in WebKit/Source/core/storage (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/StorageArea.h ('k') | no next file » | 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 6ce8982e30f4b0f7eb641a3751b70a5eeaff64f6..8874fb344d8113dcab78a1b05a51ec542b488c43 100644
--- a/Source/core/storage/StorageEvent.h
+++ b/Source/core/storage/StorageEvent.h
@@ -44,7 +44,7 @@ struct StorageEventInit : public EventInit {
RefPtrWillBeMember<Storage> storageArea;
};
-class StorageEvent FINAL : public Event {
+class StorageEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<StorageEvent> create();
@@ -63,9 +63,9 @@ 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 OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
StorageEvent();
« no previous file with comments | « Source/core/storage/StorageArea.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698