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

Unified Diff: Source/core/animation/SVGInterpolation.h

Issue 1226293002: Fix virtual/override/final usage in Source/core/{animation,css,style}/. (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/animation/SVGInterpolation.h
diff --git a/Source/core/animation/SVGInterpolation.h b/Source/core/animation/SVGInterpolation.h
index 8e616e01270624ddafd1586da48f7dd098a71c9a..d58766f826ad4f766e34ceeacbf988ccf4ad09c5 100644
--- a/Source/core/animation/SVGInterpolation.h
+++ b/Source/core/animation/SVGInterpolation.h
@@ -13,13 +13,13 @@ namespace blink {
class SVGInterpolation : public Interpolation {
public:
- virtual bool isSVGInterpolation() const override final { return true; }
+ bool isSVGInterpolation() const final { return true; }
SVGAnimatedPropertyBase* attribute() const { return m_attribute.get(); }
const QualifiedName& attributeName() const { return m_attribute->attributeName(); }
- virtual PropertyHandle property() const override final
+ PropertyHandle property() const final
{
return PropertyHandle(attributeName());
}
« no previous file with comments | « Source/core/animation/RectSVGInterpolation.h ('k') | Source/core/animation/SVGStrokeDasharrayStyleInterpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698