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

Unified Diff: Source/core/animation/animatable/AnimatableLengthPoint3D.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/AnimatableLengthPoint3D.h
diff --git a/Source/core/animation/animatable/AnimatableLengthPoint3D.h b/Source/core/animation/animatable/AnimatableLengthPoint3D.h
index 527c6e6e87f935780eeda3e529fc1d05adf111e5..9e93aefbaa1f2786a65f952668f1478abebd2977 100644
--- a/Source/core/animation/animatable/AnimatableLengthPoint3D.h
+++ b/Source/core/animation/animatable/AnimatableLengthPoint3D.h
@@ -37,7 +37,7 @@ namespace blink {
class AnimatableLengthPoint3D final : public AnimatableValue {
public:
- virtual ~AnimatableLengthPoint3D() { }
+ ~AnimatableLengthPoint3D() override { }
static PassRefPtrWillBeRawPtr<AnimatableLengthPoint3D> create(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y, PassRefPtrWillBeRawPtr<AnimatableValue> z)
{
return adoptRefWillBeNoop(new AnimatableLengthPoint3D(x, y, z));
@@ -49,7 +49,7 @@ public:
DECLARE_VIRTUAL_TRACE();
protected:
- virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
private:
AnimatableLengthPoint3D(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y, PassRefPtrWillBeRawPtr<AnimatableValue> z)
@@ -58,8 +58,8 @@ private:
, m_z(z)
{
}
- virtual AnimatableType type() const override { return TypeLengthPoint3D; }
- virtual bool equalTo(const AnimatableValue*) const override;
+ AnimatableType type() const override { return TypeLengthPoint3D; }
+ bool equalTo(const AnimatableValue*) const override;
RefPtrWillBeMember<AnimatableValue> m_x;
RefPtrWillBeMember<AnimatableValue> m_y;
« no previous file with comments | « Source/core/animation/animatable/AnimatableLengthPoint.h ('k') | Source/core/animation/animatable/AnimatableLengthSize.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698