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

Unified Diff: third_party/WebKit/Source/core/animation/SVGRectInterpolationType.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, 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/SVGRectInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/SVGRectInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGRectInterpolationType.cpp
index e68d789eaa0ab9f80da98c939ddb9be3267a4241..2ca8b8847e790e9c6cc9f217441bac7400ab989e 100644
--- a/third_party/WebKit/Source/core/animation/SVGRectInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/SVGRectInterpolationType.cpp
@@ -40,10 +40,10 @@ InterpolationValue SVGRectInterpolationType::maybeConvertSVGValue(const SVGPrope
return InterpolationValue(result.release());
}
-PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGRectInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
+RawPtr<SVGPropertyBase> SVGRectInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
{
const InterpolableList& list = toInterpolableList(interpolableValue);
- RefPtrWillBeRawPtr<SVGRect> result = SVGRect::create();
+ RawPtr<SVGRect> result = SVGRect::create();
result->setX(toInterpolableNumber(list.get(RectX))->value());
result->setY(toInterpolableNumber(list.get(RectY))->value());
result->setWidth(toInterpolableNumber(list.get(RectWidth))->value());

Powered by Google App Engine
This is Rietveld 408576698