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

Unified Diff: Source/core/animation/animatable/AnimatableFilterOperations.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
Index: Source/core/animation/animatable/AnimatableFilterOperations.h
diff --git a/Source/core/animation/animatable/AnimatableFilterOperations.h b/Source/core/animation/animatable/AnimatableFilterOperations.h
index a2e59197eeb3e27297d56e5033eceace5b405279..073155a23bb5e394b095a4a1c535fbb719a8702f 100644
--- a/Source/core/animation/animatable/AnimatableFilterOperations.h
+++ b/Source/core/animation/animatable/AnimatableFilterOperations.h
@@ -43,14 +43,14 @@ public:
return adoptRefWillBeNoop(new AnimatableFilterOperations(operations));
}
- virtual ~AnimatableFilterOperations() { }
+ ~AnimatableFilterOperations() override { }
DECLARE_VIRTUAL_TRACE();
const FilterOperations& operations() const { return m_operations; }
protected:
- virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
- virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
+ PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
private:
AnimatableFilterOperations(const FilterOperations& operations)
@@ -58,8 +58,8 @@ private:
{
}
- virtual bool equalTo(const AnimatableValue*) const override;
- virtual AnimatableType type() const override { return TypeFilterOperations; }
+ bool equalTo(const AnimatableValue*) const override;
+ AnimatableType type() const override { return TypeFilterOperations; }
FilterOperations m_operations;
};
« no previous file with comments | « Source/core/animation/animatable/AnimatableDoubleAndBool.h ('k') | Source/core/animation/animatable/AnimatableImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698