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

Unified Diff: Source/platform/animation/AnimationValue.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 | « Source/core/svg/properties/SVGPropertyTearOff.h ('k') | Source/platform/graphics/filters/FEBlend.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/animation/AnimationValue.h
diff --git a/Source/platform/animation/AnimationValue.h b/Source/platform/animation/AnimationValue.h
index 5b96b19e6780a7dd45b287cdd0707c39a250d5a1..0bf60bc606916f79305a04bcbc8f35e3c1063a43 100644
--- a/Source/platform/animation/AnimationValue.h
+++ b/Source/platform/animation/AnimationValue.h
@@ -92,23 +92,6 @@ private:
TransformOperations m_value;
};
-// Used to store one filter value in a keyframe list.
-class FilterAnimationValue final : public AnimationValue {
-public:
- explicit FilterAnimationValue(double keyTime, const FilterOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = nullptr)
- : AnimationValue(keyTime, timingFunction)
- {
- if (value)
- m_value = *value;
- }
- virtual PassOwnPtr<AnimationValue> clone() const override { return adoptPtr(new FilterAnimationValue(*this)); }
-
- const FilterOperations* value() const { return &m_value; }
-
-private:
- FilterOperations m_value;
-};
-
} // namespace blink
#endif // AnimationValue_h
« no previous file with comments | « Source/core/svg/properties/SVGPropertyTearOff.h ('k') | Source/platform/graphics/filters/FEBlend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698