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

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

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
« no previous file with comments | « Source/core/animation/AnimationInputHelpers.cpp ('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..8350a9420a7d7ad6aaff8d2c49fecfd9e439ff85 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,17 +22,16 @@ 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);
« no previous file with comments | « Source/core/animation/AnimationInputHelpers.cpp ('k') | Source/core/animation/ColorStyleInterpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698