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

Unified Diff: Source/core/xml/XPathStep.h

Issue 133983002: Update XML classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/xml/XPathPredicate.h ('k') | Source/core/xml/XPathVariableReference.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathStep.h
diff --git a/Source/core/xml/XPathStep.h b/Source/core/xml/XPathStep.h
index b148aae1471adf536533954502bda36ee4476567..cc6bb091f97d00067a20b7b696ccd01f08955c04 100644
--- a/Source/core/xml/XPathStep.h
+++ b/Source/core/xml/XPathStep.h
@@ -38,7 +38,7 @@ namespace XPath {
class Predicate;
-class Step : public ParseNode {
+class Step FINAL : public ParseNode {
WTF_MAKE_NONCOPYABLE(Step);
WTF_MAKE_FAST_ALLOCATED;
public:
@@ -94,7 +94,7 @@ public:
Step(Axis, const NodeTest&);
Step(Axis, const NodeTest&, Vector<OwnPtr<Predicate> >&);
- ~Step();
+ virtual ~Step();
void optimize();
« no previous file with comments | « Source/core/xml/XPathPredicate.h ('k') | Source/core/xml/XPathVariableReference.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698