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

Unified Diff: Source/core/svg/SVGAnimatedEnumerationBase.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/SVGAngleTearOff.h ('k') | Source/core/svg/SVGLengthListTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedEnumerationBase.cpp
diff --git a/Source/core/svg/SVGAnimatedEnumerationBase.cpp b/Source/core/svg/SVGAnimatedEnumerationBase.cpp
index 8c42b4c66b8839eb5f76b458dcb535384639b585..d9ed0460e3d9e540990aac129b74776c0c814003 100644
--- a/Source/core/svg/SVGAnimatedEnumerationBase.cpp
+++ b/Source/core/svg/SVGAnimatedEnumerationBase.cpp
@@ -55,7 +55,7 @@ void SVGAnimatedEnumerationBase::setBaseVal(unsigned short value, ExceptionState
m_baseValueUpdated = true;
- ASSERT(this->attributeName() != nullQName());
+ ASSERT(this->attributeName() != QualifiedName::null());
contextElement()->invalidateSVGAttributes();
contextElement()->svgAttributeChanged(this->attributeName());
}
« no previous file with comments | « Source/core/svg/SVGAngleTearOff.h ('k') | Source/core/svg/SVGLengthListTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698