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

Unified Diff: Source/core/events/RelatedEvent.h

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/events/PromiseRejectionEvent.h ('k') | Source/core/events/ResourceProgressEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/RelatedEvent.h
diff --git a/Source/core/events/RelatedEvent.h b/Source/core/events/RelatedEvent.h
index 4256942ce781dc7a8a9a143d9005a4f1a4fb5560..8ac371adc559895d7c08a29d71c5feb9ed9702e1 100644
--- a/Source/core/events/RelatedEvent.h
+++ b/Source/core/events/RelatedEvent.h
@@ -17,12 +17,12 @@ public:
static PassRefPtrWillBeRawPtr<RelatedEvent> create(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget);
static PassRefPtrWillBeRawPtr<RelatedEvent> create(const AtomicString& eventType, const RelatedEventInit&);
- virtual ~RelatedEvent();
+ ~RelatedEvent() override;
EventTarget* relatedTarget() const { return m_relatedTarget.get(); }
- virtual const AtomicString& interfaceName() const override { return EventNames::RelatedEvent; }
- virtual bool isRelatedEvent() const override { return true; }
+ const AtomicString& interfaceName() const override { return EventNames::RelatedEvent; }
+ bool isRelatedEvent() const override { return true; }
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/core/events/PromiseRejectionEvent.h ('k') | Source/core/events/ResourceProgressEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698