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

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 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/SVGPathSegLinetoAbs.h ('k') | Source/core/svg/SVGPathSegLinetoHorizontalRel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « Source/core/svg/SVGPathSegLinetoAbs.h ('k') | Source/core/svg/SVGPathSegLinetoHorizontalRel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698