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

Unified Diff: Source/core/svg/SVGFilterPrimitiveStandardAttributes.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/SVGFilterPrimitiveStandardAttributes.h
diff --git a/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h b/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
index 9fd741f9ea29f53c35ae4a3276ddeca9f3fc876a..11628398e506852af5a5ab408a3ce38836ae4767 100644
--- a/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
+++ b/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
@@ -57,17 +57,17 @@ public:
protected:
SVGFilterPrimitiveStandardAttributes(const QualifiedName&, Document&);
- virtual void svgAttributeChanged(const QualifiedName&) override;
- virtual void childrenChanged(const ChildrenChange&) override;
+ void svgAttributeChanged(const QualifiedName&) override;
+ void childrenChanged(const ChildrenChange&) override;
void invalidate();
void primitiveAttributeChanged(const QualifiedName&);
private:
- virtual bool isFilterEffect() const override final { return true; }
+ bool isFilterEffect() const final { return true; }
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
- virtual bool layoutObjectIsNeeded(const ComputedStyle&) override final;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ bool layoutObjectIsNeeded(const ComputedStyle&) final;
RefPtrWillBeMember<SVGAnimatedLength> m_x;
RefPtrWillBeMember<SVGAnimatedLength> m_y;

Powered by Google App Engine
This is Rietveld 408576698