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

Unified Diff: third_party/WebKit/Source/core/svg/SVGString.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/SVGString.h ('k') | third_party/WebKit/Source/core/svg/SVGStringList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/SVGString.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGString.cpp b/third_party/WebKit/Source/core/svg/SVGString.cpp
index ee89a05a618f261a3b396ee081824aed5c5c1b58..f2b8329f781c56b1885ce5e2cb92cf5d6b9e6a45 100644
--- a/third_party/WebKit/Source/core/svg/SVGString.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGString.cpp
@@ -23,12 +23,12 @@
namespace blink {
-void SVGString::add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
+void SVGString::add(RawPtr<SVGPropertyBase>, SVGElement*)
{
ASSERT_NOT_REACHED();
}
-void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
+void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, RawPtr<SVGPropertyBase> from, RawPtr<SVGPropertyBase> to, RawPtr<SVGPropertyBase>, SVGElement*)
{
ASSERT(animationElement);
@@ -38,7 +38,7 @@ void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, fl
animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value);
}
-float SVGString::calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
+float SVGString::calculateDistance(RawPtr<SVGPropertyBase>, SVGElement*)
{
// No paced animations for strings.
return -1;
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGString.h ('k') | third_party/WebKit/Source/core/svg/SVGStringList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698