| Index: Source/core/html/HTMLTableElement.h
|
| diff --git a/Source/core/html/HTMLTableElement.h b/Source/core/html/HTMLTableElement.h
|
| index b20374740f5cd815ce30a6f3e0996c2cfd3eac47..4ec167481b37273bb45c268fbf9d9bb7ebf96330 100644
|
| --- a/Source/core/html/HTMLTableElement.h
|
| +++ b/Source/core/html/HTMLTableElement.h
|
| @@ -38,8 +38,8 @@ class HTMLTableSectionElement;
|
|
|
| class HTMLTableElement FINAL : public HTMLElement {
|
| public:
|
| - static PassRefPtr<HTMLTableElement> create(Document*);
|
| - static PassRefPtr<HTMLTableElement> create(const QualifiedName&, Document*);
|
| + static PassRefPtr<HTMLTableElement> create(Document&);
|
| + static PassRefPtr<HTMLTableElement> create(const QualifiedName&, Document&);
|
|
|
| HTMLTableCaptionElement* caption() const;
|
| void setCaption(PassRefPtr<HTMLTableCaptionElement>, ExceptionState&);
|
| @@ -70,7 +70,7 @@ public:
|
| const StylePropertySet* additionalGroupStyle(bool rows);
|
|
|
| private:
|
| - HTMLTableElement(const QualifiedName&, Document*);
|
| + HTMLTableElement(const QualifiedName&, Document&);
|
|
|
| virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
|
|
|