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

Unified Diff: Source/core/svg/SVGString.cpp

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased upto r185213 Created 6 years, 1 month 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 | « Source/core/svg/SVGString.h ('k') | Source/core/svg/SVGStringList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGString.cpp
diff --git a/Source/core/svg/SVGString.cpp b/Source/core/svg/SVGString.cpp
index d554f0ec0c4d525ce9c892edac6a89147d240355..5aa40d9e3d2d379e943c5a01e8e7aa76d400af51 100644
--- a/Source/core/svg/SVGString.cpp
+++ b/Source/core/svg/SVGString.cpp
@@ -29,7 +29,7 @@ void SVGString::add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
ASSERT_NOT_REACHED();
}
-void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase>, SVGElement*)
+void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
{
ASSERT(animationElement);
@@ -39,7 +39,7 @@ void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, fl
animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value);
}
-float SVGString::calculateDistance(PassRefPtr<SVGPropertyBase>, SVGElement*)
+float SVGString::calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
{
// No paced animations for strings.
return -1;
« no previous file with comments | « Source/core/svg/SVGString.h ('k') | Source/core/svg/SVGStringList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698