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

Unified Diff: Source/core/events/GenericEventQueue.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/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 a9f65c0265870bd2ff479514ae9d83cc5ac7ad63..4ed256aabe350c0b74c0d589f1402dc7c23a5fa5 100644
--- a/Source/core/events/GenericEventQueue.h
+++ b/Source/core/events/GenericEventQueue.h
@@ -35,17 +35,17 @@
namespace blink {
-class GenericEventQueue FINAL : public EventQueue {
+class GenericEventQueue final : public EventQueue {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
static PassOwnPtrWillBeRawPtr<GenericEventQueue> create(EventTarget*);
virtual ~GenericEventQueue();
// EventQueue
- virtual void trace(Visitor*) OVERRIDE;
- virtual bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) OVERRIDE;
- virtual bool cancelEvent(Event*) OVERRIDE;
- virtual void close() OVERRIDE;
+ virtual void trace(Visitor*) override;
+ virtual bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) override;
+ virtual bool cancelEvent(Event*) override;
+ virtual 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