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

Unified Diff: Source/core/animation/ImageStyleInterpolation.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/ImageStyleInterpolation.h
diff --git a/Source/core/animation/ImageStyleInterpolation.h b/Source/core/animation/ImageStyleInterpolation.h
index cf799089540df6afcc37224046bdda084aaefa4e..e75d98ddf380f1f31a79c5d9edab001154365869 100644
--- a/Source/core/animation/ImageStyleInterpolation.h
+++ b/Source/core/animation/ImageStyleInterpolation.h
@@ -11,9 +11,9 @@
namespace blink {
class ImageStyleInterpolation : public StyleInterpolation {
public:
- static PassRefPtrWillBeRawPtr<ImageStyleInterpolation> create(CSSValue& start, CSSValue& end, CSSPropertyID id)
+ static ImageStyleInterpolation* create(CSSValue& start, CSSValue& end, CSSPropertyID id)
{
- return adoptRefWillBeNoop(new ImageStyleInterpolation(&start, &end, id));
+ return new ImageStyleInterpolation(&start, &end, id);
}
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698