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

Unified Diff: Source/core/svg/SVGGradientElement.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/SVGGradientElement.h
diff --git a/Source/core/svg/SVGGradientElement.h b/Source/core/svg/SVGGradientElement.h
index f709bf0a931658c9d47654ede09469f3cb6bf812..b77dbaafcb170e963a03212f04d2b36d80874a9d 100644
--- a/Source/core/svg/SVGGradientElement.h
+++ b/Source/core/svg/SVGGradientElement.h
@@ -56,12 +56,12 @@ public:
protected:
SVGGradientElement(const QualifiedName&, Document&);
- virtual void svgAttributeChanged(const QualifiedName&) override;
+ void svgAttributeChanged(const QualifiedName&) override;
private:
- virtual bool needsPendingResourceHandling() const override final { return false; }
+ bool needsPendingResourceHandling() const final { return false; }
- virtual void childrenChanged(const ChildrenChange&) override final;
+ void childrenChanged(const ChildrenChange&) final;
RefPtrWillBeMember<SVGAnimatedTransformList> m_gradientTransform;
RefPtrWillBeMember<SVGAnimatedEnumeration<SVGSpreadMethodType>> m_spreadMethod;

Powered by Google App Engine
This is Rietveld 408576698