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

Unified Diff: Source/core/animation/ListStyleInterpolation.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/ListStyleInterpolation.h
diff --git a/Source/core/animation/ListStyleInterpolation.h b/Source/core/animation/ListStyleInterpolation.h
index 014883274edd8d1894a8ba004c629d8b0dd47d3a..4553a58b75412875c185c99e46e6586331d35835 100644
--- a/Source/core/animation/ListStyleInterpolation.h
+++ b/Source/core/animation/ListStyleInterpolation.h
@@ -70,10 +70,10 @@ private:
return result.release();
}
- static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToList(InterpolableValue* value, const Vector<typename InterpolationType::NonInterpolableType>& nonInterpolableData, InterpolationRange range = RangeAll)
+ static PassRefPtr<CSSValue> interpolableValueToList(InterpolableValue* value, const Vector<typename InterpolationType::NonInterpolableType>& nonInterpolableData, InterpolationRange range = RangeAll)
{
InterpolableList* listValue = toInterpolableList(value);
- RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
+ RefPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
ASSERT(nonInterpolableData.size() == listValue->length());
@@ -124,10 +124,10 @@ private:
return result.release();
}
- static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToList(InterpolableValue* value, InterpolationRange range = RangeAll)
+ static PassRefPtr<CSSValue> interpolableValueToList(InterpolableValue* value, InterpolationRange range = RangeAll)
{
InterpolableList* listValue = toInterpolableList(value);
- RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
+ RefPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
for (size_t i = 0; i < listValue->length(); i++)
result->append(InterpolationType::fromInterpolableValue(*(listValue->get(i)), range));
« no previous file with comments | « Source/core/animation/LengthStyleInterpolationTest.cpp ('k') | Source/core/animation/ListStyleInterpolationTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698