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

Unified Diff: Source/core/dom/StringCallback.cpp

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/StaticNodeList.h ('k') | Source/core/dom/StyleEngine.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/StringCallback.cpp
diff --git a/Source/core/dom/StringCallback.cpp b/Source/core/dom/StringCallback.cpp
index 85481e4b864fad912f7254c1546bb54982e2be78..aa8544cf6456ab6eedf5b7e0292b1805bd1a8b82 100644
--- a/Source/core/dom/StringCallback.cpp
+++ b/Source/core/dom/StringCallback.cpp
@@ -39,19 +39,19 @@ namespace blink {
namespace {
-class DispatchCallbackTask FINAL : public ExecutionContextTask {
+class DispatchCallbackTask final : public ExecutionContextTask {
public:
static PassOwnPtr<DispatchCallbackTask> create(StringCallback* callback, const String& data, const String& taskName)
{
return adoptPtr(new DispatchCallbackTask(callback, data, taskName));
}
- virtual void performTask(ExecutionContext*) OVERRIDE
+ virtual void performTask(ExecutionContext*) override
{
m_callback->handleEvent(m_data);
}
- virtual String taskNameForInstrumentation() const OVERRIDE
+ virtual String taskNameForInstrumentation() const override
{
return m_taskName;
}
« no previous file with comments | « Source/core/dom/StaticNodeList.h ('k') | Source/core/dom/StyleEngine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698