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

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

Powered by Google App Engine
This is Rietveld 408576698