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

Unified Diff: Source/core/svg/SVGPathSegLinetoHorizontalAbs.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/SVGPathSegLinetoHorizontalAbs.h
diff --git a/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h b/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
index 2eef27f79555fa8995aaf31893027b887f2704af..a13f56306b535bf63c17b52b3ac174957cbf1ada 100644
--- a/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
+++ b/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
@@ -29,9 +29,9 @@ namespace blink {
class SVGPathSegLinetoHorizontalAbs final : public SVGPathSegLinetoHorizontal {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, float x)
+ static PassRefPtrWillBeRawPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, float x)
{
- return adoptRef(new SVGPathSegLinetoHorizontalAbs(element, x));
+ return adoptRefWillBeNoop(new SVGPathSegLinetoHorizontalAbs(element, x));
}
private:

Powered by Google App Engine
This is Rietveld 408576698