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

Unified Diff: Source/core/events/DOMWindowEventQueue.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/CustomEvent.h ('k') | Source/core/events/ErrorEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/DOMWindowEventQueue.h
diff --git a/Source/core/events/DOMWindowEventQueue.h b/Source/core/events/DOMWindowEventQueue.h
index c50ef93b310fc9c28d5a90e1a1fdf0fa5992d37a..421be567135527c37d369f4cfe604d1e3b9f4d23 100644
--- a/Source/core/events/DOMWindowEventQueue.h
+++ b/Source/core/events/DOMWindowEventQueue.h
@@ -46,16 +46,16 @@ class ExecutionContext;
#define DOMWINDOWEVENTQUEUE_BASE_CLASSES public RefCounted<DOMWindowEventQueue>, public EventQueue
#endif
-class DOMWindowEventQueue FINAL : DOMWINDOWEVENTQUEUE_BASE_CLASSES {
+class DOMWindowEventQueue final : DOMWINDOWEVENTQUEUE_BASE_CLASSES {
public:
static PassRefPtrWillBeRawPtr<DOMWindowEventQueue> create(ExecutionContext*);
virtual ~DOMWindowEventQueue();
// 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;
private:
explicit DOMWindowEventQueue(ExecutionContext*);
« no previous file with comments | « Source/core/events/CustomEvent.h ('k') | Source/core/events/ErrorEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698