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

Unified Diff: Source/core/animation/ConstantStyleInterpolation.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/ConstantStyleInterpolation.h
diff --git a/Source/core/animation/ConstantStyleInterpolation.h b/Source/core/animation/ConstantStyleInterpolation.h
index 0ccda69bf72f08c69bc0f19dec04885dd2aac50f..596d8e56fb78a99f45bbcc5494ab2aa36a4c1088 100644
--- a/Source/core/animation/ConstantStyleInterpolation.h
+++ b/Source/core/animation/ConstantStyleInterpolation.h
@@ -12,9 +12,9 @@ namespace blink {
class ConstantStyleInterpolation : public StyleInterpolation {
public:
- static PassRefPtrWillBeRawPtr<ConstantStyleInterpolation> create(CSSValue* value, CSSPropertyID id)
+ static ConstantStyleInterpolation* create(CSSValue* value, CSSPropertyID id)
{
- return adoptRefWillBeNoop(new ConstantStyleInterpolation(value, id));
+ return new ConstantStyleInterpolation(value, id);
}
void apply(StyleResolverState& state) const override
« no previous file with comments | « Source/core/animation/CompositorPendingAnimations.cpp ('k') | Source/core/animation/DefaultSVGInterpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698