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

Unified Diff: Source/core/animation/StyleInterpolation.h

Issue 1226293002: Fix virtual/override/final usage in Source/core/{animation,css,style}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/StringKeyframe.h ('k') | Source/core/animation/VisibilityStyleInterpolation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/StyleInterpolation.h
diff --git a/Source/core/animation/StyleInterpolation.h b/Source/core/animation/StyleInterpolation.h
index 16fee903406fcd034fe23512ac1dd81e201baec5..83a1b3add08b7121d1c7f92a37a94de46ccb080d 100644
--- a/Source/core/animation/StyleInterpolation.h
+++ b/Source/core/animation/StyleInterpolation.h
@@ -35,12 +35,12 @@ 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; }
+ bool isStyleInterpolation() const final { return true; }
virtual bool isDeferredLegacyStyleInterpolation() const { return false; }
CSSPropertyID id() const { return m_id; }
- virtual PropertyHandle property() const override final
+ PropertyHandle property() const final
{
return PropertyHandle(id());
}
« no previous file with comments | « Source/core/animation/StringKeyframe.h ('k') | Source/core/animation/VisibilityStyleInterpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698