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

Unified Diff: Source/core/animation/animatable/AnimatableLengthBoxAndBool.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/AnimatableLengthBoxAndBool.h
diff --git a/Source/core/animation/animatable/AnimatableLengthBoxAndBool.h b/Source/core/animation/animatable/AnimatableLengthBoxAndBool.h
index e7ab372d94a4670f1db1ac6b994223ed11b20e37..184e52bbaf503c399f919019f22557c5b3c1e59e 100644
--- a/Source/core/animation/animatable/AnimatableLengthBoxAndBool.h
+++ b/Source/core/animation/animatable/AnimatableLengthBoxAndBool.h
@@ -35,7 +35,7 @@
namespace blink {
-class AnimatableLengthBoxAndBool FINAL : public AnimatableValue {
+class AnimatableLengthBoxAndBool final : public AnimatableValue {
public:
virtual ~AnimatableLengthBoxAndBool() { }
static PassRefPtrWillBeRawPtr<AnimatableLengthBoxAndBool> create(PassRefPtrWillBeRawPtr<AnimatableValue> box, bool flag)
@@ -45,11 +45,11 @@ public:
const AnimatableValue* box() const { return m_box.get(); }
bool flag() const { return m_flag; }
- 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:
AnimatableLengthBoxAndBool(PassRefPtrWillBeRawPtr<AnimatableValue> box, bool flag)
@@ -57,8 +57,8 @@ private:
, m_flag(flag)
{
}
- virtual AnimatableType type() const OVERRIDE { return TypeLengthBoxAndBool; }
- virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
+ virtual AnimatableType type() const override { return TypeLengthBoxAndBool; }
+ virtual bool equalTo(const AnimatableValue*) const override;
RefPtrWillBeMember<AnimatableValue> m_box;
bool m_flag;
« no previous file with comments | « Source/core/animation/animatable/AnimatableLengthBox.h ('k') | Source/core/animation/animatable/AnimatableLengthPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698