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

Unified Diff: third_party/WebKit/Source/core/svg/SVGPoint.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
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPoint.h ('k') | third_party/WebKit/Source/core/svg/SVGPoint.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/SVGPoint.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGPoint.cpp b/third_party/WebKit/Source/core/svg/SVGPoint.cpp
index aad0395b68ef5c129962c3c5cf374493a161bbaa..5d551f512697a0e8fe49e37e41f6bff119f29ac5 100644
--- a/third_party/WebKit/Source/core/svg/SVGPoint.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGPoint.cpp
@@ -47,7 +47,7 @@ SVGPoint::SVGPoint(const FloatPoint& point)
{
}
-PassRefPtrWillBeRawPtr<SVGPoint> SVGPoint::clone() const
+RawPtr<SVGPoint> SVGPoint::clone() const
{
return SVGPoint::create(m_value);
}
@@ -103,19 +103,19 @@ String SVGPoint::valueAsString() const
return builder.toString();
}
-void SVGPoint::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement*)
+void SVGPoint::add(RawPtr<SVGPropertyBase> other, SVGElement*)
{
// SVGPoint is not animated by itself
ASSERT_NOT_REACHED();
}
-void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> fromValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*)
+void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, RawPtr<SVGPropertyBase> fromValue, RawPtr<SVGPropertyBase> toValue, RawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*)
{
// SVGPoint is not animated by itself
ASSERT_NOT_REACHED();
}
-float SVGPoint::calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement* contextElement)
+float SVGPoint::calculateDistance(RawPtr<SVGPropertyBase> to, SVGElement* contextElement)
{
// SVGPoint is not animated by itself
ASSERT_NOT_REACHED();
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPoint.h ('k') | third_party/WebKit/Source/core/svg/SVGPoint.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698