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

Unified Diff: Source/core/animation/StyleInterpolation.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/StyleInterpolation.h
diff --git a/Source/core/animation/StyleInterpolation.h b/Source/core/animation/StyleInterpolation.h
index 912f10cfea866775741d10fe6e8b9d17cc4453b7..6baa07c0a921506978fc00f319d7f199450a9b8f 100644
--- a/Source/core/animation/StyleInterpolation.h
+++ b/Source/core/animation/StyleInterpolation.h
@@ -22,11 +22,11 @@ public:
// (3) a custom value that is inserted directly into the StyleResolverState.
virtual void apply(StyleResolverState&) const = 0;
- virtual bool isStyleInterpolation() const OVERRIDE FINAL { return true; }
+ virtual bool isStyleInterpolation() const override final { return true; }
CSSPropertyID id() const { return m_id; }
- virtual void trace(Visitor* visitor) OVERRIDE
+ virtual void trace(Visitor* visitor) override
{
Interpolation::trace(visitor);
}
« no previous file with comments | « Source/core/animation/StringKeyframe.h ('k') | Source/core/animation/animatable/AnimatableClipPathOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698