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

Unified Diff: Source/core/animation/ImageSliceStyleInterpolation.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/ImageSliceStyleInterpolation.h
diff --git a/Source/core/animation/ImageSliceStyleInterpolation.h b/Source/core/animation/ImageSliceStyleInterpolation.h
index 46f56612bc55e3da13c17f7e4a5f2434b67ce741..7305640869c75f3ed40cae15e18ee0196ce8e7a3 100644
--- a/Source/core/animation/ImageSliceStyleInterpolation.h
+++ b/Source/core/animation/ImageSliceStyleInterpolation.h
@@ -14,7 +14,7 @@ class CSSBorderImageSliceValue;
class ImageSliceStyleInterpolation : public StyleInterpolation {
public:
static bool usesDefaultInterpolation(const CSSValue&, const CSSValue&);
- static PassRefPtrWillBeRawPtr<ImageSliceStyleInterpolation> maybeCreate(const CSSValue&, const CSSValue&, CSSPropertyID);
+ static ImageSliceStyleInterpolation* maybeCreate(const CSSValue&, const CSSValue&, CSSPropertyID);
void apply(StyleResolverState&) const override;
DECLARE_VIRTUAL_TRACE();
@@ -27,7 +27,7 @@ public:
};
private:
- ImageSliceStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID property, Metadata metadata)
+ ImageSliceStyleInterpolation(InterpolableValue* start, InterpolableValue* end, CSSPropertyID property, Metadata metadata)
: StyleInterpolation(start, end, property)
, m_metadata(metadata)
{ }
« no previous file with comments | « Source/core/animation/FilterStyleInterpolationTest.cpp ('k') | Source/core/animation/ImageSliceStyleInterpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698