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

Unified Diff: Source/core/animation/ShadowStyleInterpolation.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/SampledEffect.cpp ('k') | Source/core/animation/ShadowStyleInterpolation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/ShadowStyleInterpolation.h
diff --git a/Source/core/animation/ShadowStyleInterpolation.h b/Source/core/animation/ShadowStyleInterpolation.h
index 606fd87e3c92cf713cb7ed22007b2ee4f3e00e88..b2ddbe6e64affb2b2f88ef51d34dd6515af190ef 100644
--- a/Source/core/animation/ShadowStyleInterpolation.h
+++ b/Source/core/animation/ShadowStyleInterpolation.h
@@ -21,16 +21,16 @@ public:
static bool usesDefaultStyleInterpolation(const CSSValue& start, const CSSValue& end);
- static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(const CSSValue&, NonInterpolableType&);
+ static InterpolableValue* toInterpolableValue(const CSSValue&, NonInterpolableType&);
static PassRefPtrWillBeRawPtr<CSSValue> fromInterpolableValue(const InterpolableValue&, NonInterpolableType, InterpolationRange = RangeAll);
private:
- ShadowStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id)
+ ShadowStyleInterpolation(InterpolableValue* start, InterpolableValue* end, CSSPropertyID id)
: StyleInterpolation(start, end, id)
{
}
- static PassOwnPtrWillBeRawPtr<InterpolableValue> shadowToInterpolableValue(const CSSValue& value, NonInterpolableType& type)
+ static InterpolableValue* shadowToInterpolableValue(const CSSValue& value, NonInterpolableType& type)
{
return toInterpolableValue(value, type);
}
@@ -39,7 +39,7 @@ private:
return fromInterpolableValue(value, type, range);
}
- static PassOwnPtrWillBeRawPtr<InterpolableValue> lengthToInterpolableValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue>);
+ static InterpolableValue* lengthToInterpolableValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue>);
friend class AnimationShadowStyleInterpolationTest;
};
« no previous file with comments | « Source/core/animation/SampledEffect.cpp ('k') | Source/core/animation/ShadowStyleInterpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698