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

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

Issue 1276183004: Oilpan: Unship oilpan from temporary animation objects (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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/PathSVGInterpolation.h
diff --git a/Source/core/animation/PathSVGInterpolation.h b/Source/core/animation/PathSVGInterpolation.h
index 99b7848fdfae488e6313d745cd8449a1e0645264..6a2a71d2e51c61742eb3c96ef5f0d19b25f9561b 100644
--- a/Source/core/animation/PathSVGInterpolation.h
+++ b/Source/core/animation/PathSVGInterpolation.h
@@ -12,17 +12,12 @@ namespace blink {
class PathSVGInterpolation : public SVGInterpolation {
public:
- static PassRefPtrWillBeRawPtr<PathSVGInterpolation> maybeCreate(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute);
+ static PassRefPtr<PathSVGInterpolation> maybeCreate(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute);
PassRefPtrWillBeRawPtr<SVGPropertyBase> interpolatedValue(SVGElement&) const final;
- DEFINE_INLINE_VIRTUAL_TRACE()
- {
- SVGInterpolation::trace(visitor);
- }
-
private:
- PathSVGInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute,
+ PathSVGInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute,
Vector<SVGPathSegType> pathSegTypes)
: SVGInterpolation(start, end, attribute)
{

Powered by Google App Engine
This is Rietveld 408576698