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

Unified Diff: Source/core/html/HTMLOListElement.cpp

Issue 66643004: Remove QualifiedName argument from most HTMLElement::create functions (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Hack for XML prefix Created 7 years, 1 month 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/HTMLOListElement.cpp
diff --git a/Source/core/html/HTMLOListElement.cpp b/Source/core/html/HTMLOListElement.cpp
index 8ad5bbbdc05ef7cd62209a48fa87a2d6b24d0906..6076ea1172a34365e987fb13f520826c2d422873 100644
--- a/Source/core/html/HTMLOListElement.cpp
+++ b/Source/core/html/HTMLOListElement.cpp
@@ -32,26 +32,20 @@ namespace WebCore {
using namespace HTMLNames;
-HTMLOListElement::HTMLOListElement(const QualifiedName& tagName, Document& document)
- : HTMLElement(tagName, document)
+HTMLOListElement::HTMLOListElement(Document& document)
+ : HTMLElement(olTag, document)
, m_start(0xBADBEEF)
, m_itemCount(0)
, m_hasExplicitStart(false)
, m_isReversed(false)
, m_shouldRecalculateItemCount(false)
{
- ASSERT(hasTagName(olTag));
ScriptWrappable::init(this);
}
PassRefPtr<HTMLOListElement> HTMLOListElement::create(Document& document)
{
- return adoptRef(new HTMLOListElement(olTag, document));
-}
-
-PassRefPtr<HTMLOListElement> HTMLOListElement::create(const QualifiedName& tagName, Document& document)
-{
- return adoptRef(new HTMLOListElement(tagName, document));
+ return adoptRef(new HTMLOListElement(document));
}
bool HTMLOListElement::isPresentationAttribute(const QualifiedName& name) const

Powered by Google App Engine
This is Rietveld 408576698