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

Unified Diff: Source/core/svg/SVGAnimatedPath.h

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
Index: Source/core/svg/SVGAnimatedPath.h
diff --git a/Source/core/svg/SVGAnimatedPath.h b/Source/core/svg/SVGAnimatedPath.h
index e6991e59ee67656261fcc6ab9ea73e09489b4f04..2a2cc797b5399ed30505dfbc3892ef04244f9f0b 100644
--- a/Source/core/svg/SVGAnimatedPath.h
+++ b/Source/core/svg/SVGAnimatedPath.h
@@ -42,9 +42,9 @@ class SVGAnimatedPath : public SVGAnimatedProperty<SVGPathSegList> {
public:
virtual ~SVGAnimatedPath();
- static PassRefPtr<SVGAnimatedPath> create(SVGPathElement* contextElement, const QualifiedName& attributeName)
+ static PassRefPtrWillBeRawPtr<SVGAnimatedPath> create(SVGPathElement* contextElement, const QualifiedName& attributeName)
{
- return adoptRef(new SVGAnimatedPath(contextElement, attributeName));
+ return adoptRefWillBeNoop(new SVGAnimatedPath(contextElement, attributeName));
}
protected:
« no previous file with comments | « Source/core/svg/SVGAnimatedNumberOptionalNumber.cpp ('k') | Source/core/svg/SVGAnimatedPreserveAspectRatio.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698