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

Unified Diff: Source/core/dom/ExecutionContextTask.h

Issue 633573004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/dom (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/dom/ExecutionContext.h ('k') | Source/core/dom/Fullscreen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) { }
« no previous file with comments | « Source/core/dom/ExecutionContext.h ('k') | Source/core/dom/Fullscreen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698