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

Unified Diff: third_party/WebKit/Source/core/animation/LengthPairStyleInterpolation.cpp

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, 10 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/LengthPairStyleInterpolation.cpp
diff --git a/third_party/WebKit/Source/core/animation/LengthPairStyleInterpolation.cpp b/third_party/WebKit/Source/core/animation/LengthPairStyleInterpolation.cpp
index d4429ee68b9597eff63a194b603ac9383c06f299..e8702d97361f590bcac99bd5046c28d70fe50ee9 100644
--- a/third_party/WebKit/Source/core/animation/LengthPairStyleInterpolation.cpp
+++ b/third_party/WebKit/Source/core/animation/LengthPairStyleInterpolation.cpp
@@ -25,11 +25,11 @@ PassOwnPtr<InterpolableValue> LengthPairStyleInterpolation::lengthPairToInterpol
return result.release();
}
-PassRefPtrWillBeRawPtr<CSSValue> LengthPairStyleInterpolation::interpolableValueToLengthPair(InterpolableValue* value, InterpolationRange range)
+RawPtr<CSSValue> LengthPairStyleInterpolation::interpolableValueToLengthPair(InterpolableValue* value, InterpolationRange range)
{
InterpolableList* lengthPair = toInterpolableList(value);
- RefPtrWillBeRawPtr<CSSPrimitiveValue> first = LengthStyleInterpolation::fromInterpolableValue(*lengthPair->get(0), range);
- RefPtrWillBeRawPtr<CSSPrimitiveValue> second = LengthStyleInterpolation::fromInterpolableValue(*lengthPair->get(1), range);
+ RawPtr<CSSPrimitiveValue> first = LengthStyleInterpolation::fromInterpolableValue(*lengthPair->get(0), range);
+ RawPtr<CSSPrimitiveValue> second = LengthStyleInterpolation::fromInterpolableValue(*lengthPair->get(1), range);
return CSSValuePair::create(first.release(), second.release(), CSSValuePair::KeepIdenticalValues);
}

Powered by Google App Engine
This is Rietveld 408576698