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

Unified Diff: Source/core/xml/DocumentXSLT.cpp

Issue 1224823006: Fix virtual/override/final usage in Source/core/xml/. (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 | « no previous file | Source/core/xml/NativeXPathNSResolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/DocumentXSLT.cpp
diff --git a/Source/core/xml/DocumentXSLT.cpp b/Source/core/xml/DocumentXSLT.cpp
index 99343a0d0e007a7bd463590e07aa4d3ac98c5664..58eb72fcd2f67f0f2ff377406d42f9edf00bb9ad 100644
--- a/Source/core/xml/DocumentXSLT.cpp
+++ b/Source/core/xml/DocumentXSLT.cpp
@@ -58,12 +58,12 @@ public:
DocumentXSLT::applyXSLTransform(document, pi);
}
- virtual void detach() override
+ void detach() override
{
m_processingInstruction = nullptr;
}
- virtual EventListener* toEventListener() override
+ EventListener* toEventListener() override
{
return this;
}
@@ -75,8 +75,8 @@ private:
{
}
- virtual void refDetachableEventListener() override { ref(); }
- virtual void derefDetachableEventListener() override { deref(); }
+ void refDetachableEventListener() override { ref(); }
+ void derefDetachableEventListener() override { deref(); }
virtual v8::Local<v8::Value> callListenerFunction(ScriptState*, v8::Local<v8::Value>, Event*)
{
« no previous file with comments | « no previous file | Source/core/xml/NativeXPathNSResolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698