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

Unified Diff: Source/core/animation/animatable/AnimatableTransform.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/AnimatableTransform.h
diff --git a/Source/core/animation/animatable/AnimatableTransform.h b/Source/core/animation/animatable/AnimatableTransform.h
index 76475385776645c34ce894d4cc95c6dd9f2d4774..3e8ebfca3e5657c6ad9e9e8ab1f0c8ad6b3f72d4 100644
--- a/Source/core/animation/animatable/AnimatableTransform.h
+++ b/Source/core/animation/animatable/AnimatableTransform.h
@@ -39,7 +39,7 @@ namespace blink {
class CORE_EXPORT AnimatableTransform final : public AnimatableValue {
public:
- virtual ~AnimatableTransform() { }
+ ~AnimatableTransform() override { }
static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&);
const TransformOperations& transformOperations() const
{
@@ -49,15 +49,15 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { AnimatableValue::trace(visitor); }
protected:
- virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
private:
explicit AnimatableTransform(const TransformOperations& transform)
: m_transform(transform)
{
}
- virtual AnimatableType type() const override { return TypeTransform; }
- virtual bool equalTo(const AnimatableValue*) const override;
+ AnimatableType type() const override { return TypeTransform; }
+ bool equalTo(const AnimatableValue*) const override;
const TransformOperations m_transform;
};
« no previous file with comments | « Source/core/animation/animatable/AnimatableStrokeDasharrayList.h ('k') | Source/core/animation/animatable/AnimatableUnknown.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698