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

Unified Diff: Source/core/animation/animatable/AnimatableSVGLength.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/AnimatableSVGLength.h
diff --git a/Source/core/animation/animatable/AnimatableSVGLength.h b/Source/core/animation/animatable/AnimatableSVGLength.h
index 965dba8c9a00582e755638981177d24863a27843..76cbcf3d5ca4827878c4603578d3240ee580cc52 100644
--- a/Source/core/animation/animatable/AnimatableSVGLength.h
+++ b/Source/core/animation/animatable/AnimatableSVGLength.h
@@ -36,7 +36,7 @@
namespace blink {
-class AnimatableSVGLength FINAL : public AnimatableValue {
+class AnimatableSVGLength final : public AnimatableValue {
public:
virtual ~AnimatableSVGLength() { }
@@ -50,10 +50,10 @@ public:
return m_length.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 PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
private:
AnimatableSVGLength(PassRefPtr<SVGLength> length)
@@ -61,8 +61,8 @@ private:
{
}
- virtual AnimatableType type() const OVERRIDE { return TypeSVGLength; }
- virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
+ virtual AnimatableType type() const override { return TypeSVGLength; }
+ virtual bool equalTo(const AnimatableValue*) const override;
RefPtr<SVGLength> m_length;
};
« no previous file with comments | « Source/core/animation/animatable/AnimatableRepeatable.h ('k') | Source/core/animation/animatable/AnimatableSVGPaint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698