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

Unified Diff: third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.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/SVGLengthListInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp
index b67fdbe4c18744750c17f5f04b6734be00cc2b69..0524f74f9c7be7b79b43a8cbf933e6c2a1865cc5 100644
--- a/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp
@@ -59,7 +59,7 @@ void SVGLengthListInterpolationType::composite(UnderlyingValueOwner& underlyingV
underlyingValueOwner.set(*this, value);
}
-PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGLengthListInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
+RawPtr<SVGPropertyBase> SVGLengthListInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
{
ASSERT_NOT_REACHED();
// This function is no longer called, because apply has been overridden.
@@ -71,7 +71,7 @@ void SVGLengthListInterpolationType::apply(const InterpolableValue& interpolable
SVGElement& element = environment.svgElement();
SVGLengthContext lengthContext(&element);
- RefPtrWillBeRawPtr<SVGLengthList> result = SVGLengthList::create(m_unitMode);
+ RawPtr<SVGLengthList> result = SVGLengthList::create(m_unitMode);
const InterpolableList& list = toInterpolableList(interpolableValue);
for (size_t i = 0; i < list.length(); i++) {
result->append(SVGLengthInterpolationType::resolveInterpolableSVGLength(*list.get(i), lengthContext, m_unitMode, m_negativeValuesForbidden));

Powered by Google App Engine
This is Rietveld 408576698