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

Unified Diff: Source/core/animation/SVGStrokeDasharrayStyleInterpolation.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: Resize expect size of Persistent Created 5 years, 7 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/SVGStrokeDasharrayStyleInterpolation.h
diff --git a/Source/core/animation/SVGStrokeDasharrayStyleInterpolation.h b/Source/core/animation/SVGStrokeDasharrayStyleInterpolation.h
index 6f81ef4e9982238e407ca0e1e55e37804488032f..77bffb1a2f8668b9601b1ce89123e39719b8afb5 100644
--- a/Source/core/animation/SVGStrokeDasharrayStyleInterpolation.h
+++ b/Source/core/animation/SVGStrokeDasharrayStyleInterpolation.h
@@ -15,7 +15,7 @@ class CSSValueList;
class CORE_EXPORT SVGStrokeDasharrayStyleInterpolation : public StyleInterpolation {
public:
- static PassRefPtrWillBeRawPtr<SVGStrokeDasharrayStyleInterpolation> maybeCreate(const CSSValue& start, const CSSValue& end, CSSPropertyID);
+ static SVGStrokeDasharrayStyleInterpolation* maybeCreate(const CSSValue& start, const CSSValue& end, CSSPropertyID);
virtual void apply(StyleResolverState&) const override;
@@ -25,7 +25,7 @@ public:
}
private:
- SVGStrokeDasharrayStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id)
+ SVGStrokeDasharrayStyleInterpolation(InterpolableValue* start, InterpolableValue* end, CSSPropertyID id)
: StyleInterpolation(start, end, id)
{ }

Powered by Google App Engine
This is Rietveld 408576698