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

Unified Diff: Source/core/animation/LengthBoxStyleInterpolation.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
Index: Source/core/animation/LengthBoxStyleInterpolation.h
diff --git a/Source/core/animation/LengthBoxStyleInterpolation.h b/Source/core/animation/LengthBoxStyleInterpolation.h
index 748dfc793ab32170870abdee331e2d2cf9a128b3..2f91f64a27bffc0e3bf16215da5c9ae71c34dd3d 100644
--- a/Source/core/animation/LengthBoxStyleInterpolation.h
+++ b/Source/core/animation/LengthBoxStyleInterpolation.h
@@ -14,7 +14,7 @@ namespace blink {
class CORE_EXPORT LengthBoxStyleInterpolation : public StyleInterpolation {
public:
- static PassRefPtrWillBeRawPtr<LengthBoxStyleInterpolation> maybeCreateFrom(CSSValue&, CSSValue&, CSSPropertyID);
+ static LengthBoxStyleInterpolation* maybeCreateFrom(CSSValue&, CSSValue&, CSSPropertyID);
static bool usesDefaultInterpolation(const CSSValue&, const CSSValue&);
@@ -22,13 +22,13 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- LengthBoxStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> startInterpolation, PassOwnPtrWillBeRawPtr<InterpolableValue> endInterpolation, CSSPropertyID id, CSSValue* startCSS, CSSValue* endCSS)
+ LengthBoxStyleInterpolation(InterpolableValue* startInterpolation, InterpolableValue* endInterpolation, CSSPropertyID id, CSSValue* startCSS, CSSValue* endCSS)
: StyleInterpolation(startInterpolation, endInterpolation, id)
, m_startCSSValue(startCSS)
, m_endCSSValue(endCSS)
{ }
- static PassOwnPtrWillBeRawPtr<InterpolableValue> lengthBoxtoInterpolableValue(const CSSValue&, const CSSValue&, bool);
+ static InterpolableValue* lengthBoxtoInterpolableValue(const CSSValue&, const CSSValue&, bool);
static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToLengthBox(InterpolableValue*, const CSSValue&, const CSSValue&);
RefPtrWillBeMember<CSSValue> m_startCSSValue;
« no previous file with comments | « Source/core/animation/LegacyStyleInterpolation.h ('k') | Source/core/animation/LengthBoxStyleInterpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698