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

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

Issue 129133002: Update animation classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/AnimatableTransform.h ('k') | Source/core/animation/AnimatableVisibility.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimatableUnknown.h
diff --git a/Source/core/animation/AnimatableUnknown.h b/Source/core/animation/AnimatableUnknown.h
index fefc4b0ab793f9bb6bde8de71fd82bfc18ebb07a..4080c4d75fdc178ac4f740da865b56ec11dd35c0 100644
--- a/Source/core/animation/AnimatableUnknown.h
+++ b/Source/core/animation/AnimatableUnknown.h
@@ -37,7 +37,7 @@
namespace WebCore {
-class AnimatableUnknown : public AnimatableValue {
+class AnimatableUnknown FINAL : public AnimatableValue {
public:
virtual ~AnimatableUnknown() { }
@@ -59,7 +59,7 @@ protected:
return defaultInterpolateTo(this, value, fraction);
}
- virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const { return true; }
+ virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE { return true; }
private:
explicit AnimatableUnknown(PassRefPtr<CSSValue> value)
« no previous file with comments | « Source/core/animation/AnimatableTransform.h ('k') | Source/core/animation/AnimatableVisibility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698