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

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

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 669a442947119c40f65df55bb9fef5a8aabd6e15..8933dfb5f82de85d84e7256ce181ea433453af71 100644
--- a/Source/core/dom/StringCallback.cpp
+++ b/Source/core/dom/StringCallback.cpp
@@ -47,12 +47,12 @@ public:
return adoptPtr(new DispatchCallbackTask(callback, data, taskName));
}
- virtual void performTask(ExecutionContext*) override
+ void performTask(ExecutionContext*) override
{
m_callback->handleEvent(m_data);
}
- virtual String taskNameForInstrumentation() const override
+ 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