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

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

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 2 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: Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h
diff --git a/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h b/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h
index d10b45c391bd1da78fff19b7b1291a4b30b75d34..cd1caad104c1c15abbd66dc45efe18878ab41d06 100644
--- a/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h
+++ b/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h
@@ -29,9 +29,9 @@ namespace blink {
class SVGPathSegCurvetoQuadraticAbs final : public SVGPathSegCurvetoQuadratic {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, float x, float y, float x1, float y1)
+ static PassRefPtrWillBeRawPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, float x, float y, float x1, float y1)
{
- return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, x, y, x1, y1));
+ return adoptRefWillBeNoop(new SVGPathSegCurvetoQuadraticAbs(element, x, y, x1, y1));
}
private:

Powered by Google App Engine
This is Rietveld 408576698