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

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

Issue 636833002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/events (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/events/ProgressEvent.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 b2192b60cc6c5c4eaf5843913e883f2141cbb197..73ca8044f8f4b744afab27e80469002287cda6ec 100644
--- a/Source/core/events/RelatedEvent.h
+++ b/Source/core/events/RelatedEvent.h
@@ -14,7 +14,7 @@ struct RelatedEventInit : public EventInit {
RefPtrWillBeMember<EventTarget> relatedTarget;
};
-class RelatedEvent FINAL : public Event {
+class RelatedEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<RelatedEvent> create();
@@ -25,10 +25,10 @@ public:
EventTarget* relatedTarget() const { return m_relatedTarget.get(); }
- virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::RelatedEvent; }
- virtual bool isRelatedEvent() const OVERRIDE { return true; }
+ virtual const AtomicString& interfaceName() const override { return EventNames::RelatedEvent; }
+ virtual bool isRelatedEvent() const override { return true; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
RelatedEvent();
« no previous file with comments | « Source/core/events/ProgressEvent.h ('k') | Source/core/events/ResourceProgressEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698