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

Unified Diff: third_party/WebKit/Source/core/animation/ListStyleInterpolation.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/core/animation/ListStyleInterpolation.h
diff --git a/third_party/WebKit/Source/core/animation/ListStyleInterpolation.h b/third_party/WebKit/Source/core/animation/ListStyleInterpolation.h
index 1ea18a9b48aa2daeba802fa2e7f4bbcc1161ba07..cfe417b640db44429ad28876606c43004a725e0e 100644
--- a/third_party/WebKit/Source/core/animation/ListStyleInterpolation.h
+++ b/third_party/WebKit/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 RawPtr<CSSValue> interpolableValueToList(InterpolableValue* value, const Vector<typename InterpolationType::NonInterpolableType>& nonInterpolableData, InterpolationRange range = RangeAll)
{
InterpolableList* listValue = toInterpolableList(value);
- RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
+ RawPtr<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 RawPtr<CSSValue> interpolableValueToList(InterpolableValue* value, InterpolationRange range = RangeAll)
{
InterpolableList* listValue = toInterpolableList(value);
- RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
+ RawPtr<CSSValueList> result = CSSValueList::createCommaSeparated();
for (size_t i = 0; i < listValue->length(); i++)
result->append(InterpolationType::fromInterpolableValue(*(listValue->get(i)), range));

Powered by Google App Engine
This is Rietveld 408576698