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

Unified Diff: third_party/WebKit/Source/core/animation/SVGIntegerInterpolationType.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/SVGIntegerInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/SVGIntegerInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGIntegerInterpolationType.cpp
index bfe71c55daf54d91d585adad78a2e0c16f9b6eb6..b05b487622b5385423075e0aec1013a33db68993 100644
--- a/third_party/WebKit/Source/core/animation/SVGIntegerInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/SVGIntegerInterpolationType.cpp
@@ -21,7 +21,7 @@ InterpolationValue SVGIntegerInterpolationType::maybeConvertSVGValue(const SVGPr
return InterpolationValue(InterpolableNumber::create(toSVGInteger(svgValue).value()));
}
-PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGIntegerInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
+RawPtr<SVGPropertyBase> SVGIntegerInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
{
double value = toInterpolableNumber(interpolableValue).value();
return SVGInteger::create(round(value));

Powered by Google App Engine
This is Rietveld 408576698