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