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

Unified Diff: Source/core/events/CustomEvent.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/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 2d5dfe1ec35654a7968b80e5cf1d03ab16de1008..5fa94c952c946bfc35f10707090e475fa4782103 100644
--- a/Source/core/events/CustomEvent.h
+++ b/Source/core/events/CustomEvent.h
@@ -37,7 +37,7 @@ class SerializedScriptValue;
class CORE_EXPORT CustomEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- virtual ~CustomEvent();
+ ~CustomEvent() override;
static PassRefPtrWillBeRawPtr<CustomEvent> create()
{
@@ -51,7 +51,7 @@ public:
void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue>);
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
SerializedScriptValue* serializedDetail() { return m_serializedDetail.get(); }
« 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