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

Unified Diff: Source/core/animation/LengthInterpolationType.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/LengthInterpolationType.h
diff --git a/Source/core/animation/LengthInterpolationType.h b/Source/core/animation/LengthInterpolationType.h
index c9f82fdbb7e48796c8d1579f9eb5b530073829bf..c743794a3a0d660cb8fd4e662176b9a61cba7e37 100644
--- a/Source/core/animation/LengthInterpolationType.h
+++ b/Source/core/animation/LengthInterpolationType.h
@@ -14,15 +14,15 @@ class LengthInterpolationType : public InterpolationType {
public:
LengthInterpolationType(CSSPropertyID);
- PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertUnderlyingValue(const StyleResolverState&) const final;
+ PassOwnPtr<InterpolationValue> maybeConvertUnderlyingValue(const StyleResolverState&) const final;
void apply(const InterpolableValue&, const NonInterpolableValue*, StyleResolverState&) const final;
private:
- PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertLength(const Length&, float zoom) const;
- PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertNeutral() const final;
- PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertInitial() const final;
- PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertInherit(const StyleResolverState*, ConversionCheckers&) const final;
- PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertValue(const CSSValue&, const StyleResolverState*, ConversionCheckers&) const final;
+ PassOwnPtr<InterpolationValue> maybeConvertLength(const Length&, float zoom) const;
+ PassOwnPtr<InterpolationValue> maybeConvertNeutral() const final;
+ PassOwnPtr<InterpolationValue> maybeConvertInitial() const final;
+ PassOwnPtr<InterpolationValue> maybeConvertInherit(const StyleResolverState*, ConversionCheckers&) const final;
+ PassOwnPtr<InterpolationValue> maybeConvertValue(const CSSValue&, const StyleResolverState*, ConversionCheckers&) const final;
const ValueRange m_valueRange;
};

Powered by Google App Engine
This is Rietveld 408576698