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

Unified Diff: Source/core/animation/LegacyStyleInterpolation.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
« no previous file with comments | « Source/core/animation/KeyframeEffectModel.h ('k') | Source/core/animation/LengthStyleInterpolation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/LegacyStyleInterpolation.h
diff --git a/Source/core/animation/LegacyStyleInterpolation.h b/Source/core/animation/LegacyStyleInterpolation.h
index e2af5aa1c2df38276e728665bf69e22590236eb3..b2b536ced3d20fd71f88e5c2557e699a2e16b48c 100644
--- a/Source/core/animation/LegacyStyleInterpolation.h
+++ b/Source/core/animation/LegacyStyleInterpolation.h
@@ -17,18 +17,18 @@ public:
return adoptRefWillBeNoop(new LegacyStyleInterpolation(InterpolableAnimatableValue::create(start), InterpolableAnimatableValue::create(end), id));
}
- virtual void apply(StyleResolverState& state) const OVERRIDE
+ virtual void apply(StyleResolverState& state) const override
{
AnimatedStyleBuilder::applyProperty(m_id, state, currentValue().get());
}
- virtual bool isLegacyStyleInterpolation() const OVERRIDE FINAL { return true; }
+ virtual bool isLegacyStyleInterpolation() const override final { return true; }
PassRefPtrWillBeRawPtr<AnimatableValue> currentValue() const
{
return toInterpolableAnimatableValue(m_cachedValue.get())->value();
}
- virtual void trace(Visitor* visitor) OVERRIDE
+ virtual void trace(Visitor* visitor) override
{
StyleInterpolation::trace(visitor);
}
« no previous file with comments | « Source/core/animation/KeyframeEffectModel.h ('k') | Source/core/animation/LengthStyleInterpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698