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

Unified Diff: Source/core/animation/ImageStyleInterpolation.h

Issue 1303173007: Oilpan: Unship Oilpan from CSSValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/ImageStyleInterpolation.h
diff --git a/Source/core/animation/ImageStyleInterpolation.h b/Source/core/animation/ImageStyleInterpolation.h
index 30cb19882bdd1f4e733b4a8d7f15642a5582292b..76db40e36cc5b43532c00e7d454344ef18295681 100644
--- a/Source/core/animation/ImageStyleInterpolation.h
+++ b/Source/core/animation/ImageStyleInterpolation.h
@@ -22,15 +22,15 @@ public:
void apply(StyleResolverState&) const override;
private:
- ImageStyleInterpolation(PassRefPtrWillBeRawPtr<CSSValue> start, PassRefPtrWillBeRawPtr<CSSValue> end, CSSPropertyID id)
+ ImageStyleInterpolation(PassRefPtr<CSSValue> start, PassRefPtr<CSSValue> end, CSSPropertyID id)
: StyleInterpolation(InterpolableNumber::create(0.0), InterpolableNumber::create(1.0), id)
, m_initialImage(start)
, m_finalImage(end)
{
}
- RefPtrWillBeMember<CSSValue> m_initialImage;
- RefPtrWillBeMember<CSSValue> m_finalImage;
+ RefPtr<CSSValue> m_initialImage;
+ RefPtr<CSSValue> m_finalImage;
};
}
« no previous file with comments | « Source/core/animation/ImageSliceStyleInterpolation.cpp ('k') | Source/core/animation/ImageStyleInterpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698