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

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: 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/ImageSliceStyleInterpolation.h
diff --git a/Source/core/animation/ImageSliceStyleInterpolation.h b/Source/core/animation/ImageSliceStyleInterpolation.h
index c6ca1128a962cecc0cc3331f8ba20fb13979e549..42ae3cb2233c3aba05d82169fd0b40cdb3362d59 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);
virtual 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)
{ }

Powered by Google App Engine
This is Rietveld 408576698