| Index: Source/core/html/HTMLTableRowElement.h
|
| diff --git a/Source/core/html/HTMLTableRowElement.h b/Source/core/html/HTMLTableRowElement.h
|
| index 948364259c4788c5eeec093e806d750f16cde2e7..8d58a534c5ea4499d9aeab3acd9ec67dac71045f 100644
|
| --- a/Source/core/html/HTMLTableRowElement.h
|
| +++ b/Source/core/html/HTMLTableRowElement.h
|
| @@ -35,7 +35,6 @@ class ExceptionState;
|
| class HTMLTableRowElement FINAL : public HTMLTablePartElement {
|
| public:
|
| static PassRefPtr<HTMLTableRowElement> create(Document&);
|
| - static PassRefPtr<HTMLTableRowElement> create(const QualifiedName&, Document&);
|
|
|
| int rowIndex() const;
|
| void setRowIndex(int);
|
| @@ -50,7 +49,7 @@ public:
|
| void setCells(HTMLCollection *, ExceptionState&);
|
|
|
| private:
|
| - HTMLTableRowElement(const QualifiedName&, Document&);
|
| + explicit HTMLTableRowElement(Document&);
|
| };
|
|
|
| inline bool isHTMLTableRowElement(const Node* node)
|
|
|