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

Unified Diff: Source/core/events/GenericEventQueue.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/FocusEvent.h ('k') | Source/core/events/GestureEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/GenericEventQueue.h
diff --git a/Source/core/events/GenericEventQueue.h b/Source/core/events/GenericEventQueue.h
index e8cfef7f0d7afcf96d9ce9f7790ac7543f10f0ab..18d8c6663abb01b7308636d481406157b9c5697f 100644
--- a/Source/core/events/GenericEventQueue.h
+++ b/Source/core/events/GenericEventQueue.h
@@ -40,13 +40,13 @@ class CORE_EXPORT GenericEventQueue final : public EventQueue {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(GenericEventQueue);
public:
static PassOwnPtrWillBeRawPtr<GenericEventQueue> create(EventTarget*);
- virtual ~GenericEventQueue();
+ ~GenericEventQueue() override;
// EventQueue
DECLARE_VIRTUAL_TRACE();
- virtual bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) override;
- virtual bool cancelEvent(Event*) override;
- virtual void close() override;
+ bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) override;
+ bool cancelEvent(Event*) override;
+ void close() override;
void cancelAllEvents();
bool hasPendingEvents() const;
« no previous file with comments | « Source/core/events/FocusEvent.h ('k') | Source/core/events/GestureEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698