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

Unified Diff: Source/core/animation/animatable/AnimatableTransform.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/AnimatableTransform.h
diff --git a/Source/core/animation/animatable/AnimatableTransform.h b/Source/core/animation/animatable/AnimatableTransform.h
index 47b1629b3e31ec971892467be3c89f9b6775a2d0..e75f54af15c879dc4eb9df80aae69fe01c9c3820 100644
--- a/Source/core/animation/animatable/AnimatableTransform.h
+++ b/Source/core/animation/animatable/AnimatableTransform.h
@@ -36,7 +36,7 @@
namespace blink {
-class AnimatableTransform FINAL : public AnimatableValue {
+class AnimatableTransform final : public AnimatableValue {
public:
virtual ~AnimatableTransform() { }
static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&);
@@ -45,18 +45,18 @@ public:
return m_transform;
}
- 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:
explicit AnimatableTransform(const TransformOperations& transform)
: m_transform(transform)
{
}
- virtual AnimatableType type() const OVERRIDE { return TypeTransform; }
- virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
+ virtual AnimatableType type() const override { return TypeTransform; }
+ virtual 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