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

Unified Diff: Source/web/WebPageSerializer.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.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebPageSerializer.cpp
diff --git a/Source/web/WebPageSerializer.cpp b/Source/web/WebPageSerializer.cpp
index 1ae99cfd559e679070140281a8ee32023108e0bc..b4678ab3a94fd4fb73b92deb9942b706c2a091f3 100644
--- a/Source/web/WebPageSerializer.cpp
+++ b/Source/web/WebPageSerializer.cpp
@@ -66,7 +66,7 @@ KURL getSubResourceURLFromElement(Element* element)
{
ASSERT(element);
const QualifiedName& attributeName = element->subResourceAttributeName();
- if (attributeName == nullQName())
+ if (attributeName == QualifiedName::null())
return KURL();
String value = element->getAttribute(attributeName);
« no previous file with comments | « Source/core/svg/properties/SVGPropertyTearOff.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698