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

Unified Diff: third_party/WebKit/Source/core/svg/SVGStringList.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/svg/SVGStringList.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGStringList.cpp b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
index 3de04d28f1f60015af415c5470e4085021a7ce6f..2ddcd5391d3fd7fab0398d26dc386c6aaf8c1318 100644
--- a/third_party/WebKit/Source/core/svg/SVGStringList.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
@@ -151,19 +151,19 @@ bool SVGStringList::checkIndexBound(size_t index, ExceptionState& exceptionState
return true;
}
-void SVGStringList::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement* contextElement)
+void SVGStringList::add(RawPtr<SVGPropertyBase> other, SVGElement* contextElement)
{
// SVGStringList is never animated.
ASSERT_NOT_REACHED();
}
-void SVGStringList::calculateAnimatedValue(SVGAnimationElement*, float, unsigned, PassRefPtrWillBeRawPtr<SVGPropertyBase>, PassRefPtrWillBeRawPtr<SVGPropertyBase>, PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
+void SVGStringList::calculateAnimatedValue(SVGAnimationElement*, float, unsigned, RawPtr<SVGPropertyBase>, RawPtr<SVGPropertyBase>, RawPtr<SVGPropertyBase>, SVGElement*)
{
// SVGStringList is never animated.
ASSERT_NOT_REACHED();
}
-float SVGStringList::calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
+float SVGStringList::calculateDistance(RawPtr<SVGPropertyBase>, SVGElement*)
{
// SVGStringList is never animated.
ASSERT_NOT_REACHED();
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGStringList.h ('k') | third_party/WebKit/Source/core/svg/SVGStringList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698