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

Unified Diff: Source/core/animation/animatable/AnimatableShapeValue.h

Issue 630993005: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added cpp to list Created 6 years, 2 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/AnimatableShapeValue.h
diff --git a/Source/core/animation/animatable/AnimatableShapeValue.h b/Source/core/animation/animatable/AnimatableShapeValue.h
index e8aeda50b887656d9be2946174006173be01c341..c40385aebf1e0d2f6695243349d16713f863045d 100644
--- a/Source/core/animation/animatable/AnimatableShapeValue.h
+++ b/Source/core/animation/animatable/AnimatableShapeValue.h
@@ -36,7 +36,7 @@
namespace blink {
-class AnimatableShapeValue FINAL : public AnimatableValue {
+class AnimatableShapeValue final : public AnimatableValue {
public:
virtual ~AnimatableShapeValue() { }
static PassRefPtrWillBeRawPtr<AnimatableShapeValue> create(ShapeValue* shape)
@@ -45,11 +45,11 @@ public:
}
ShapeValue* shapeValue() const { return m_shape.get(); }
- virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
+ virtual void trace(Visitor* visitor) override { AnimatableValue::trace(visitor); }
protected:
- virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
- virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
private:
AnimatableShapeValue(ShapeValue* shape)
@@ -57,8 +57,8 @@ private:
{
ASSERT(m_shape);
}
- virtual AnimatableType type() const OVERRIDE { return TypeShapeValue; }
- virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
+ virtual AnimatableType type() const override { return TypeShapeValue; }
+ virtual bool equalTo(const AnimatableValue*) const override;
RefPtr<ShapeValue> m_shape;
};
« no previous file with comments | « Source/core/animation/animatable/AnimatableShadow.h ('k') | Source/core/animation/animatable/AnimatableStrokeDasharrayList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698