| Index: Source/core/html/HTMLTextAreaElement.h
|
| diff --git a/Source/core/html/HTMLTextAreaElement.h b/Source/core/html/HTMLTextAreaElement.h
|
| index 57d33d7fff362bd993a8ef757c4056fdad2f7a1d..d415cc31b57fe5354c0e6585b7bb4effa49a7578 100644
|
| --- a/Source/core/html/HTMLTextAreaElement.h
|
| +++ b/Source/core/html/HTMLTextAreaElement.h
|
| @@ -34,7 +34,7 @@ class VisibleSelection;
|
|
|
| class HTMLTextAreaElement FINAL : public HTMLTextFormControlElement {
|
| public:
|
| - static PassRefPtr<HTMLTextAreaElement> create(const QualifiedName&, Document*, HTMLFormElement*);
|
| + static PassRefPtr<HTMLTextAreaElement> create(const QualifiedName&, Document&, HTMLFormElement*);
|
|
|
| int cols() const { return m_cols; }
|
| int rows() const { return m_rows; }
|
| @@ -62,7 +62,7 @@ public:
|
| void setRows(int);
|
|
|
| private:
|
| - HTMLTextAreaElement(const QualifiedName&, Document*, HTMLFormElement*);
|
| + HTMLTextAreaElement(const QualifiedName&, Document&, HTMLFormElement*);
|
|
|
| enum WrapMethod { NoWrap, SoftWrap, HardWrap };
|
|
|
|
|