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

Unified Diff: Source/core/svg/SVGRectTearOff.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/SVGPreserveAspectRatioTearOff.h ('k') | Source/core/svg/SVGStringListTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGRectTearOff.h
diff --git a/Source/core/svg/SVGRectTearOff.h b/Source/core/svg/SVGRectTearOff.h
index 3c04de189501b71c29705083c5ac814b571887ef..a4c7ee51f3b218bf17406302916f1dce50bd7142 100644
--- a/Source/core/svg/SVGRectTearOff.h
+++ b/Source/core/svg/SVGRectTearOff.h
@@ -39,7 +39,7 @@ namespace WebCore {
class SVGRectTearOff : public SVGPropertyTearOff<SVGRect>, public ScriptWrappable {
public:
- static PassRefPtr<SVGRectTearOff> create(PassRefPtr<SVGRect> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
+ static PassRefPtr<SVGRectTearOff> create(PassRefPtr<SVGRect> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
{
return adoptRef(new SVGRectTearOff(target, contextElement, propertyIsAnimVal, attributeName));
}
@@ -54,7 +54,7 @@ public:
float height() { return target()->height(); }
private:
- SVGRectTearOff(PassRefPtr<SVGRect>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = nullQName());
+ SVGRectTearOff(PassRefPtr<SVGRect>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null());
};
} // namespace WebCore
« no previous file with comments | « Source/core/svg/SVGPreserveAspectRatioTearOff.h ('k') | Source/core/svg/SVGStringListTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698