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

Unified Diff: Source/core/animation/DeferredLegacyStyleInterpolation.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/DeferredLegacyStyleInterpolation.h
diff --git a/Source/core/animation/DeferredLegacyStyleInterpolation.h b/Source/core/animation/DeferredLegacyStyleInterpolation.h
index 1c624ae790c3ea39081d456841d07f35c22de0ad..19036048ce79d6e7452061381d5e671f514dc07f 100644
--- a/Source/core/animation/DeferredLegacyStyleInterpolation.h
+++ b/Source/core/animation/DeferredLegacyStyleInterpolation.h
@@ -21,7 +21,7 @@ class CSSValueList;
class CORE_EXPORT DeferredLegacyStyleInterpolation : public StyleInterpolation {
public:
- static PassRefPtrWillBeRawPtr<DeferredLegacyStyleInterpolation> create(PassRefPtrWillBeRawPtr<CSSValue> start, PassRefPtrWillBeRawPtr<CSSValue> end, CSSPropertyID id)
+ static PassRefPtrWillBeRawPtr<DeferredLegacyStyleInterpolation> create(PassRefPtr<CSSValue> start, PassRefPtr<CSSValue> end, CSSPropertyID id)
{
return adoptRefWillBeNoop(new DeferredLegacyStyleInterpolation(start, end, id));
}
@@ -43,7 +43,7 @@ public:
bool isDeferredLegacyStyleInterpolation() const final { return true; }
private:
- DeferredLegacyStyleInterpolation(PassRefPtrWillBeRawPtr<CSSValue> start, PassRefPtrWillBeRawPtr<CSSValue> end, CSSPropertyID id)
+ DeferredLegacyStyleInterpolation(PassRefPtr<CSSValue> start, PassRefPtr<CSSValue> end, CSSPropertyID id)
: StyleInterpolation(InterpolableNumber::create(0), InterpolableNumber::create(1), id)
, m_startCSSValue(start)
, m_endCSSValue(end)
@@ -51,8 +51,8 @@ private:
{
}
- RefPtrWillBeMember<CSSValue> m_startCSSValue;
- RefPtrWillBeMember<CSSValue> m_endCSSValue;
+ RefPtr<CSSValue> m_startCSSValue;
+ RefPtr<CSSValue> m_endCSSValue;
mutable RefPtrWillBeMember<LegacyStyleInterpolation> m_innerInterpolation;
mutable bool m_outdated;
};
« no previous file with comments | « Source/core/animation/ConstantStyleInterpolation.h ('k') | Source/core/animation/DeferredLegacyStyleInterpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698