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

Unified Diff: Source/core/workers/WorkerEventQueue.h

Issue 631133003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/workers (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/workers/WorkerConsole.h ('k') | Source/core/workers/WorkerGlobalScope.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/WorkerEventQueue.h
diff --git a/Source/core/workers/WorkerEventQueue.h b/Source/core/workers/WorkerEventQueue.h
index 152c2b28304dceaec71af27d691f0385f82ce643..95a8aff22588a59480c8dea474bdb317f4f45481 100644
--- a/Source/core/workers/WorkerEventQueue.h
+++ b/Source/core/workers/WorkerEventQueue.h
@@ -39,7 +39,7 @@ class Event;
class Node;
class ExecutionContext;
-class WorkerEventQueue FINAL : public EventQueue {
+class WorkerEventQueue final : public EventQueue {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
@@ -48,9 +48,9 @@ public:
void trace(Visitor*);
// EventQueue
- virtual bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) OVERRIDE;
- virtual bool cancelEvent(Event*) OVERRIDE;
- virtual void close() OVERRIDE;
+ virtual bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) override;
+ virtual bool cancelEvent(Event*) override;
+ virtual void close() override;
private:
explicit WorkerEventQueue(ExecutionContext*);
« no previous file with comments | « Source/core/workers/WorkerConsole.h ('k') | Source/core/workers/WorkerGlobalScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698