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

Unified Diff: Source/core/svg/SVGMPathElement.h

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (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
Index: Source/core/svg/SVGMPathElement.h
diff --git a/Source/core/svg/SVGMPathElement.h b/Source/core/svg/SVGMPathElement.h
index e02f0126b4eb78ca49950c5babedef8158316323..a9cdc20b29ce29a0d944a559f106322bd56ce80d 100644
--- a/Source/core/svg/SVGMPathElement.h
+++ b/Source/core/svg/SVGMPathElement.h
@@ -37,7 +37,7 @@ class SVGMPathElement final : public SVGElement,
public:
DECLARE_NODE_FACTORY(SVGMPathElement);
- virtual ~SVGMPathElement();
+ ~SVGMPathElement() override;
SVGPathElement* pathElement();
@@ -48,14 +48,14 @@ public:
private:
explicit SVGMPathElement(Document&);
- virtual void buildPendingResource() override;
+ void buildPendingResource() override;
void clearResourceReferences();
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
- virtual void removedFrom(ContainerNode*) override;
+ InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ void removedFrom(ContainerNode*) override;
- virtual void svgAttributeChanged(const QualifiedName&) override;
+ void svgAttributeChanged(const QualifiedName&) override;
- virtual bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; }
+ bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; }
void notifyParentOfPathChange(ContainerNode*);
};

Powered by Google App Engine
This is Rietveld 408576698