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

Unified Diff: Source/core/animation/animatable/AnimatableNeutral.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/AnimatableNeutral.h
diff --git a/Source/core/animation/animatable/AnimatableNeutral.h b/Source/core/animation/animatable/AnimatableNeutral.h
index 3d9a55a3514dd665d9330cc621f6314033011461..582ac21d0a969fb9964567ab49c668ff3d5b2695 100644
--- a/Source/core/animation/animatable/AnimatableNeutral.h
+++ b/Source/core/animation/animatable/AnimatableNeutral.h
@@ -35,15 +35,15 @@
namespace blink {
-class AnimatableNeutral FINAL : public AnimatableValue {
+class AnimatableNeutral final : public AnimatableValue {
public:
virtual ~AnimatableNeutral() { }
- virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
+ virtual void trace(Visitor* visitor) override { AnimatableValue::trace(visitor); }
protected:
static PassRefPtrWillBeRawPtr<AnimatableNeutral> create() { return adoptRefWillBeNoop(new AnimatableNeutral()); }
- virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const OVERRIDE
+ virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const override
{
ASSERT_NOT_REACHED();
return nullptr;
@@ -51,8 +51,8 @@ protected:
private:
friend class AnimatableValue;
- virtual AnimatableType type() const OVERRIDE { return TypeNeutral; }
- virtual bool equalTo(const AnimatableValue* value) const OVERRIDE
+ virtual AnimatableType type() const override { return TypeNeutral; }
+ virtual bool equalTo(const AnimatableValue* value) const override
{
ASSERT_NOT_REACHED();
return true;
« no previous file with comments | « Source/core/animation/animatable/AnimatableLengthSize.h ('k') | Source/core/animation/animatable/AnimatableRepeatable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698