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

Unified Diff: Source/core/svg/SVGNumberTearOff.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/SVGNumberListTearOff.h ('k') | Source/core/svg/SVGPathSegListTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGNumberTearOff.h
diff --git a/Source/core/svg/SVGNumberTearOff.h b/Source/core/svg/SVGNumberTearOff.h
index d501835089f6789e67b9ddd438915b51828511ba..8abe917f0ce1b204ee1b5b4e4a6283e86f0080c6 100644
--- a/Source/core/svg/SVGNumberTearOff.h
+++ b/Source/core/svg/SVGNumberTearOff.h
@@ -41,7 +41,7 @@ class SVGMatrix;
class SVGNumberTearOff : public SVGPropertyTearOff<SVGNumber>, public ScriptWrappable {
public:
- static PassRefPtr<SVGNumberTearOff> create(PassRefPtr<SVGNumber> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
+ static PassRefPtr<SVGNumberTearOff> create(PassRefPtr<SVGNumber> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
{
return adoptRef(new SVGNumberTearOff(target, contextElement, propertyIsAnimVal, attributeName));
}
@@ -50,7 +50,7 @@ public:
float value() { return target()->value(); }
protected:
- SVGNumberTearOff(PassRefPtr<SVGNumber>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = nullQName());
+ SVGNumberTearOff(PassRefPtr<SVGNumber>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null());
};
} // namespace WebCore
« no previous file with comments | « Source/core/svg/SVGNumberListTearOff.h ('k') | Source/core/svg/SVGPathSegListTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698