| Index: Source/core/dom/ExecutionContextTask.h
|
| diff --git a/Source/core/dom/ExecutionContextTask.h b/Source/core/dom/ExecutionContextTask.h
|
| index f52853e5deb7116305b102b90c8d3cb395198834..60507a20abf84940a56d8705e36e86e1fe655f85 100644
|
| --- a/Source/core/dom/ExecutionContextTask.h
|
| +++ b/Source/core/dom/ExecutionContextTask.h
|
| @@ -49,7 +49,7 @@ public:
|
| virtual String taskNameForInstrumentation() const { return String(); }
|
| };
|
|
|
| -class CallClosureTask FINAL : public ExecutionContextTask {
|
| +class CallClosureTask final : public ExecutionContextTask {
|
| public:
|
| // Do not use |create| other than in createCrossThreadTask and
|
| // createSameThreadTask.
|
| @@ -58,7 +58,7 @@ public:
|
| {
|
| return adoptPtr(new CallClosureTask(closure));
|
| }
|
| - virtual void performTask(ExecutionContext*) OVERRIDE { m_closure(); }
|
| + virtual void performTask(ExecutionContext*) override { m_closure(); }
|
|
|
| private:
|
| explicit CallClosureTask(const Closure& closure) : m_closure(closure) { }
|
|
|