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

Unified Diff: Source/core/animation/animatable/AnimatableStrokeDasharrayList.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/animatable/AnimatableStrokeDasharrayList.h
diff --git a/Source/core/animation/animatable/AnimatableStrokeDasharrayList.h b/Source/core/animation/animatable/AnimatableStrokeDasharrayList.h
index bb9329d92f5bcc25ae8201450d54d1aaaf9d3e3b..7937f7579443f1366e30d90c76b9bde077edefc5 100644
--- a/Source/core/animation/animatable/AnimatableStrokeDasharrayList.h
+++ b/Source/core/animation/animatable/AnimatableStrokeDasharrayList.h
@@ -39,7 +39,7 @@ namespace blink {
class CORE_EXPORT AnimatableStrokeDasharrayList final : public AnimatableRepeatable {
public:
- virtual ~AnimatableStrokeDasharrayList() { }
+ ~AnimatableStrokeDasharrayList() override { }
static PassRefPtrWillBeRawPtr<AnimatableStrokeDasharrayList> create(PassRefPtr<SVGDashArray> lengths, float zoom)
{
@@ -51,8 +51,8 @@ public:
DECLARE_VIRTUAL_TRACE();
protected:
- virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
- virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
+ PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
private:
AnimatableStrokeDasharrayList(PassRefPtr<SVGDashArray>, float zoom);
@@ -62,7 +62,7 @@ private:
{
}
- virtual AnimatableType type() const override { return TypeStrokeDasharrayList; }
+ AnimatableType type() const override { return TypeStrokeDasharrayList; }
};
DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableStrokeDasharrayList, isStrokeDasharrayList());
« no previous file with comments | « Source/core/animation/animatable/AnimatableShapeValue.h ('k') | Source/core/animation/animatable/AnimatableTransform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698