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

Unified Diff: Source/core/animation/FilterStyleInterpolation.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: Build fix Created 5 years, 8 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/FilterStyleInterpolation.h
diff --git a/Source/core/animation/FilterStyleInterpolation.h b/Source/core/animation/FilterStyleInterpolation.h
index 9e626d14745e72b68b585e0c1f792f08c744bf54..637be22bb4f06a0e898db5724b4d982c486ce8ba 100644
--- a/Source/core/animation/FilterStyleInterpolation.h
+++ b/Source/core/animation/FilterStyleInterpolation.h
@@ -15,15 +15,15 @@ public:
typedef CSSValueID NonInterpolableType;
typedef ListStyleInterpolationImpl<FilterStyleInterpolation, NonInterpolableType> FilterListStyleInterpolation;
- static PassRefPtrWillBeRawPtr<FilterListStyleInterpolation> maybeCreateList(const CSSValue& start, const CSSValue& end, CSSPropertyID);
+ static FilterListStyleInterpolation* maybeCreateList(const CSSValue& start, const CSSValue& end, CSSPropertyID);
// The following are called by ListStyleInterpolation.
static bool canCreateFrom(const CSSValue& start, const CSSValue& end);
- static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(const CSSValue&, CSSValueID&);
+ static InterpolableValue* toInterpolableValue(const CSSValue&, CSSValueID&);
static PassRefPtrWillBeRawPtr<CSSFunctionValue> fromInterpolableValue(const InterpolableValue&, CSSValueID, InterpolationRange = RangeAll);
private:
- FilterStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id)
+ FilterStyleInterpolation(InterpolableValue* start, InterpolableValue* end, CSSPropertyID id)
: StyleInterpolation(start, end, id)
{
}

Powered by Google App Engine
This is Rietveld 408576698