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

Unified Diff: Source/core/animation/animatable/AnimatableFilterOperations.h

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased upto r185213 Created 6 years, 1 month 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 | « no previous file | Source/core/animation/animatable/AnimatableFilterOperations.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/animatable/AnimatableFilterOperations.h
diff --git a/Source/core/animation/animatable/AnimatableFilterOperations.h b/Source/core/animation/animatable/AnimatableFilterOperations.h
index 970778d5ff17769b255f3581798bd8f670d179e6..07621fb09a5e5cf65407cd8fe90783f4c5a72686 100644
--- a/Source/core/animation/animatable/AnimatableFilterOperations.h
+++ b/Source/core/animation/animatable/AnimatableFilterOperations.h
@@ -38,14 +38,15 @@ namespace blink {
class AnimatableFilterOperations final : public AnimatableValue {
public:
- virtual ~AnimatableFilterOperations() { }
static PassRefPtrWillBeRawPtr<AnimatableFilterOperations> create(const FilterOperations& operations)
{
return adoptRefWillBeNoop(new AnimatableFilterOperations(operations));
}
- const FilterOperations& operations() const { return m_operations; }
- virtual void trace(Visitor* visitor) override { AnimatableValue::trace(visitor); }
+ virtual ~AnimatableFilterOperations() { }
+ virtual void trace(Visitor*) override;
+
+ const FilterOperations& operations() const { return m_operations; }
protected:
virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
@@ -56,6 +57,7 @@ private:
: m_operations(operations)
{
}
+
virtual bool equalTo(const AnimatableValue*) const override;
virtual AnimatableType type() const override { return TypeFilterOperations; }
« no previous file with comments | « no previous file | Source/core/animation/animatable/AnimatableFilterOperations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698