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

Unified Diff: Source/core/animation/animatable/AnimatableShadow.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/AnimatableShadow.h
diff --git a/Source/core/animation/animatable/AnimatableShadow.h b/Source/core/animation/animatable/AnimatableShadow.h
index 04e61b3215213fd6f72f7d901b17ed85c365220a..f52fde66b48748400a92dbcfe926193b6568ddc4 100644
--- a/Source/core/animation/animatable/AnimatableShadow.h
+++ b/Source/core/animation/animatable/AnimatableShadow.h
@@ -36,7 +36,7 @@
namespace blink {
-class AnimatableShadow FINAL : public AnimatableValue {
+class AnimatableShadow final : public AnimatableValue {
public:
virtual ~AnimatableShadow() { }
static PassRefPtrWillBeRawPtr<AnimatableShadow> create(PassRefPtr<ShadowList> shadowList)
@@ -45,18 +45,18 @@ public:
}
ShadowList* shadowList() const { return m_shadowList.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:
explicit AnimatableShadow(PassRefPtr<ShadowList> shadowList)
: m_shadowList(shadowList)
{
}
- virtual AnimatableType type() const OVERRIDE { return TypeShadow; }
- virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
+ virtual AnimatableType type() const override { return TypeShadow; }
+ virtual bool equalTo(const AnimatableValue*) const override;
const RefPtr<ShadowList> m_shadowList;
};
« no previous file with comments | « Source/core/animation/animatable/AnimatableSVGPaint.h ('k') | Source/core/animation/animatable/AnimatableShapeValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698