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

Unified Diff: Source/core/svg/properties/SVGPropertyTearOff.cpp

Issue 311803003: [oilpan]: Avoid refcounting QualifiedName's nullQName when tracing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review feedback 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
Index: Source/core/svg/properties/SVGPropertyTearOff.cpp
diff --git a/Source/core/svg/properties/SVGPropertyTearOff.cpp b/Source/core/svg/properties/SVGPropertyTearOff.cpp
index d7b97931d6b2e2f9e8b4b014bb9cbbbb827577c4..fd8189d55ddfd93486e68a43806cdc30f7afd42a 100644
--- a/Source/core/svg/properties/SVGPropertyTearOff.cpp
+++ b/Source/core/svg/properties/SVGPropertyTearOff.cpp
@@ -40,7 +40,7 @@ void SVGPropertyTearOffBase::commitChange()
ASSERT(!isImmutable());
if (!contextElement() || isAnimVal())
return;
- ASSERT(m_attributeName != nullQName());
+ ASSERT(m_attributeName != QualifiedName::null());
contextElement()->invalidateSVGAttributes();
contextElement()->svgAttributeChanged(m_attributeName);
}

Powered by Google App Engine
This is Rietveld 408576698