Index: Source/core/html/HTMLOListElement.h |
diff --git a/Source/core/html/HTMLOListElement.h b/Source/core/html/HTMLOListElement.h |
index d3dd1a2cdfbd076c13c3e15360305d08f8950026..0da2e2c713d067b370fd03ad03c8c4da0f6e4665 100644 |
--- a/Source/core/html/HTMLOListElement.h |
+++ b/Source/core/html/HTMLOListElement.h |
@@ -30,7 +30,6 @@ namespace WebCore { |
class HTMLOListElement FINAL : public HTMLElement { |
public: |
static PassRefPtr<HTMLOListElement> create(Document&); |
- static PassRefPtr<HTMLOListElement> create(const QualifiedName&, Document&); |
int start() const { return m_hasExplicitStart ? m_start : (m_isReversed ? itemCount() : 1); } |
void setStart(int); |
@@ -40,7 +39,7 @@ public: |
void itemCountChanged() { m_shouldRecalculateItemCount = true; } |
private: |
- HTMLOListElement(const QualifiedName&, Document&); |
+ explicit HTMLOListElement(Document&); |
void updateItemValues(); |