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

Unified Diff: third_party/WebKit/Source/core/dom/QualifiedName.cpp

Issue 2702403013: Make HashTraits<QualifiedName>::emptyValue return a const reference (Closed)
Patch Set: Default inline null() Created 3 years, 9 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 | « third_party/WebKit/Source/core/dom/QualifiedName.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/QualifiedName.cpp
diff --git a/third_party/WebKit/Source/core/dom/QualifiedName.cpp b/third_party/WebKit/Source/core/dom/QualifiedName.cpp
index 1ab21b15e4600c1a03622f314885c65ba83d72a0..469923b484ec3b5cd8428505027eb58396877821 100644
--- a/third_party/WebKit/Source/core/dom/QualifiedName.cpp
+++ b/third_party/WebKit/Source/core/dom/QualifiedName.cpp
@@ -120,10 +120,6 @@ void QualifiedName::initAndReserveCapacityForSize(unsigned size) {
new ((void*)&nullName) QualifiedName(nullAtom, nullAtom, nullAtom, true);
}
-const QualifiedName& QualifiedName::null() {
- return nullName;
-}
-
const AtomicString& QualifiedName::localNameUpper() const {
if (!m_impl->m_localNameUpper)
m_impl->m_localNameUpper = m_impl->m_localName.upperASCII();
« no previous file with comments | « third_party/WebKit/Source/core/dom/QualifiedName.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698