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

Unified Diff: Source/core/animation/animatable/AnimatableFilterOperations.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/animatable/AnimatableFilterOperations.h
diff --git a/Source/core/animation/animatable/AnimatableFilterOperations.h b/Source/core/animation/animatable/AnimatableFilterOperations.h
index 7f0166e373f2b00cdd22e07a136ae7c9d7e000dd..970778d5ff17769b255f3581798bd8f670d179e6 100644
--- a/Source/core/animation/animatable/AnimatableFilterOperations.h
+++ b/Source/core/animation/animatable/AnimatableFilterOperations.h
@@ -36,7 +36,7 @@
namespace blink {
-class AnimatableFilterOperations FINAL : public AnimatableValue {
+class AnimatableFilterOperations final : public AnimatableValue {
public:
virtual ~AnimatableFilterOperations() { }
static PassRefPtrWillBeRawPtr<AnimatableFilterOperations> create(const FilterOperations& operations)
@@ -45,19 +45,19 @@ public:
}
const FilterOperations& operations() const { return m_operations; }
- virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
+ virtual void trace(Visitor* visitor) override { AnimatableValue::trace(visitor); }
protected:
- virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
- virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
private:
AnimatableFilterOperations(const FilterOperations& operations)
: m_operations(operations)
{
}
- virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
- virtual AnimatableType type() const OVERRIDE { return TypeFilterOperations; }
+ virtual bool equalTo(const AnimatableValue*) const override;
+ virtual AnimatableType type() const override { return TypeFilterOperations; }
FilterOperations m_operations;
};
« no previous file with comments | « Source/core/animation/animatable/AnimatableDouble.h ('k') | Source/core/animation/animatable/AnimatableImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698