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

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: 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/ImageSliceStyleInterpolation.cpp ('k') | Source/core/animation/InertEffect.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/ImageStyleInterpolation.h
diff --git a/Source/core/animation/ImageStyleInterpolation.h b/Source/core/animation/ImageStyleInterpolation.h
index 30cb19882bdd1f4e733b4a8d7f15642a5582292b..960bb83d9ea0ddd70e1c67e1e0cd0679b83b9efc 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();
« no previous file with comments | « Source/core/animation/ImageSliceStyleInterpolation.cpp ('k') | Source/core/animation/InertEffect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698