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

Unified Diff: Source/core/events/CustomEvent.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/CompositionEvent.h ('k') | Source/core/events/DOMWindowEventQueue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/CustomEvent.h
diff --git a/Source/core/events/CustomEvent.h b/Source/core/events/CustomEvent.h
index ece5719ac247811ba5f95a9fe96be7ed15004cc8..4ef505e151ca66441b44d6ed5cd55cc5ce1739a0 100644
--- a/Source/core/events/CustomEvent.h
+++ b/Source/core/events/CustomEvent.h
@@ -34,7 +34,7 @@ class SerializedScriptValue;
typedef EventInit CustomEventInit;
-class CustomEvent FINAL : public Event {
+class CustomEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~CustomEvent();
@@ -51,7 +51,7 @@ public:
void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue>);
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
SerializedScriptValue* serializedDetail() { return m_serializedDetail.get(); }
@@ -61,7 +61,7 @@ public:
m_serializedDetail = detail;
}
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
CustomEvent();
« no previous file with comments | « Source/core/events/CompositionEvent.h ('k') | Source/core/events/DOMWindowEventQueue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698