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

Unified Diff: Source/core/svg/SVGClipPathElement.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/SVGClipPathElement.h
diff --git a/Source/core/svg/SVGClipPathElement.h b/Source/core/svg/SVGClipPathElement.h
index 9bca7151d47775666720f12404d3f34e84cfcc3e..6354eb6a92078d758e22afc3fa4ca8545f7c36da 100644
--- a/Source/core/svg/SVGClipPathElement.h
+++ b/Source/core/svg/SVGClipPathElement.h
@@ -38,19 +38,19 @@ public:
DECLARE_NODE_FACTORY(SVGClipPathElement);
SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>* clipPathUnits() { return m_clipPathUnits.get(); }
- virtual bool supportsFocus() const override { return false; }
+ bool supportsFocus() const override { return false; }
DECLARE_VIRTUAL_TRACE();
private:
explicit SVGClipPathElement(Document&);
- virtual bool needsPendingResourceHandling() const override { return false; }
+ bool needsPendingResourceHandling() const override { return false; }
- virtual void svgAttributeChanged(const QualifiedName&) override;
- virtual void childrenChanged(const ChildrenChange&) override;
+ void svgAttributeChanged(const QualifiedName&) override;
+ void childrenChanged(const ChildrenChange&) override;
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
RefPtrWillBeMember<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_clipPathUnits;
};

Powered by Google App Engine
This is Rietveld 408576698