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

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

Issue 311803003: [oilpan]: Avoid refcounting QualifiedName's nullQName when tracing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 6 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
« no previous file with comments | « Source/core/svg/SVGLengthListTearOff.h ('k') | Source/core/svg/SVGNumberListTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGLengthTearOff.h
diff --git a/Source/core/svg/SVGLengthTearOff.h b/Source/core/svg/SVGLengthTearOff.h
index 1dccb84c3f43c654db987d0215f22c1c0d2420c1..5ef43e94c1e9e5932b2dabe171ce4b72725c21e0 100644
--- a/Source/core/svg/SVGLengthTearOff.h
+++ b/Source/core/svg/SVGLengthTearOff.h
@@ -54,7 +54,7 @@ public:
SVG_LENGTHTYPE_PC = LengthTypePC
};
- static PassRefPtr<SVGLengthTearOff> create(PassRefPtr<SVGLength> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
+ static PassRefPtr<SVGLengthTearOff> create(PassRefPtr<SVGLength> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
{
return adoptRef(new SVGLengthTearOff(target, contextElement, propertyIsAnimVal, attributeName));
}
@@ -71,7 +71,7 @@ public:
void convertToSpecifiedUnits(unsigned short unitType, ExceptionState&);
private:
- SVGLengthTearOff(PassRefPtr<SVGLength>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = nullQName());
+ SVGLengthTearOff(PassRefPtr<SVGLength>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null());
};
} // namespace WebCore
« no previous file with comments | « Source/core/svg/SVGLengthListTearOff.h ('k') | Source/core/svg/SVGNumberListTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698