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

Unified Diff: Source/core/html/forms/InputType.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/html/forms/InputType.cpp
diff --git a/Source/core/html/forms/InputType.cpp b/Source/core/html/forms/InputType.cpp
index db885837fc099048640d9ff8b51043ff670299e5..946220d3b21b2903f745645c745d695f4adfda42 100644
--- a/Source/core/html/forms/InputType.cpp
+++ b/Source/core/html/forms/InputType.cpp
@@ -764,7 +764,7 @@ bool InputType::hasLegalLinkAttribute(const QualifiedName&) const
const QualifiedName& InputType::subResourceAttributeName() const
{
- return nullQName();
+ return QualifiedName::null();
}
bool InputType::supportsIndeterminateAppearance() const

Powered by Google App Engine
This is Rietveld 408576698