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

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

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 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
« no previous file with comments | « Source/core/animation/NumberSVGInterpolation.h ('k') | Source/core/animation/PathSVGInterpolation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/PathSVGInterpolation.h
diff --git a/Source/core/animation/PathSVGInterpolation.h b/Source/core/animation/PathSVGInterpolation.h
index 99b7848fdfae488e6313d745cd8449a1e0645264..4fa41d9fe0ded31660ef3af3c0f81168ac9e8686 100644
--- a/Source/core/animation/PathSVGInterpolation.h
+++ b/Source/core/animation/PathSVGInterpolation.h
@@ -12,7 +12,7 @@ namespace blink {
class PathSVGInterpolation : public SVGInterpolation {
public:
- static PassRefPtrWillBeRawPtr<PathSVGInterpolation> maybeCreate(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute);
+ static PathSVGInterpolation* maybeCreate(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute);
PassRefPtrWillBeRawPtr<SVGPropertyBase> interpolatedValue(SVGElement&) const final;
@@ -22,7 +22,7 @@ public:
}
private:
- PathSVGInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute,
+ PathSVGInterpolation(InterpolableValue* start, InterpolableValue* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute,
Vector<SVGPathSegType> pathSegTypes)
: SVGInterpolation(start, end, attribute)
{
« no previous file with comments | « Source/core/animation/NumberSVGInterpolation.h ('k') | Source/core/animation/PathSVGInterpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698