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

Unified Diff: Source/core/animation/CSSValueInterpolationType.cpp

Issue 1305383006: Oilpan: Unship CSSValues and AnimatableValues 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
« no previous file with comments | « Source/core/animation/CSSValueInterpolationType.h ('k') | Source/core/animation/ColorStyleInterpolation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/CSSValueInterpolationType.cpp
diff --git a/Source/core/animation/CSSValueInterpolationType.cpp b/Source/core/animation/CSSValueInterpolationType.cpp
index 7b91a827e17e77174a16d04bc0cdbdd6820db002..9bed5c7901236697e009e16ef7f87304a7af4501 100644
--- a/Source/core/animation/CSSValueInterpolationType.cpp
+++ b/Source/core/animation/CSSValueInterpolationType.cpp
@@ -12,7 +12,7 @@ namespace blink {
class CSSValueNonInterpolableValue : public NonInterpolableValue {
public:
~CSSValueNonInterpolableValue() override { }
- static PassRefPtrWillBeRawPtr<CSSValueNonInterpolableValue> create(PassRefPtrWillBeRawPtr<CSSValue> cssValue)
+ static PassRefPtrWillBeRawPtr<CSSValueNonInterpolableValue> create(PassRefPtr<CSSValue> cssValue)
{
return adoptRefWillBeNoop(new CSSValueNonInterpolableValue(cssValue));
}
@@ -22,23 +22,22 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE()
{
NonInterpolableValue::trace(visitor);
- visitor->trace(m_cssValue);
}
DECLARE_NON_INTERPOLABLE_VALUE_TYPE();
private:
- CSSValueNonInterpolableValue(PassRefPtrWillBeRawPtr<CSSValue> cssValue)
+ CSSValueNonInterpolableValue(PassRefPtr<CSSValue> cssValue)
: m_cssValue(cssValue)
{ }
- RefPtrWillBeMember<CSSValue> m_cssValue;
+ RefPtr<CSSValue> m_cssValue;
};
DEFINE_NON_INTERPOLABLE_VALUE_TYPE(CSSValueNonInterpolableValue);
DEFINE_NON_INTERPOLABLE_VALUE_TYPE_CASTS(CSSValueNonInterpolableValue);
-PassOwnPtrWillBeRawPtr<InterpolationValue> CSSValueInterpolationType::maybeConvertSingle(const CSSPropertySpecificKeyframe& keyframe, const StyleResolverState*, ConversionCheckers&) const
+PassOwnPtr<InterpolationValue> CSSValueInterpolationType::maybeConvertSingle(const CSSPropertySpecificKeyframe& keyframe, const StyleResolverState*, ConversionCheckers&) const
{
return InterpolationValue::create(*this, InterpolableList::create(0), CSSValueNonInterpolableValue::create(keyframe.value()));
}
« no previous file with comments | « Source/core/animation/CSSValueInterpolationType.h ('k') | Source/core/animation/ColorStyleInterpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698