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

Unified Diff: Source/core/animation/animatable/AnimatableStrokeDasharrayList.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/AnimatableStrokeDasharrayList.h
diff --git a/Source/core/animation/animatable/AnimatableStrokeDasharrayList.h b/Source/core/animation/animatable/AnimatableStrokeDasharrayList.h
index 9a00230acce3bf7fa240ee6c09a019e0d1330afa..3cb9f109b4c04a262e25a0f6e4dd4b2252c27cb1 100644
--- a/Source/core/animation/animatable/AnimatableStrokeDasharrayList.h
+++ b/Source/core/animation/animatable/AnimatableStrokeDasharrayList.h
@@ -36,7 +36,7 @@
namespace blink {
-class AnimatableStrokeDasharrayList FINAL : public AnimatableRepeatable {
+class AnimatableStrokeDasharrayList final : public AnimatableRepeatable {
public:
virtual ~AnimatableStrokeDasharrayList() { }
@@ -47,11 +47,11 @@ public:
PassRefPtr<SVGLengthList> toSVGLengthList() const;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
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:
AnimatableStrokeDasharrayList(PassRefPtr<SVGLengthList>);
@@ -61,7 +61,7 @@ private:
{
}
- virtual AnimatableType type() const OVERRIDE { return TypeStrokeDasharrayList; }
+ virtual 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