| Index: Source/core/html/HTMLTextAreaElement.h
|
| diff --git a/Source/core/html/HTMLTextAreaElement.h b/Source/core/html/HTMLTextAreaElement.h
|
| index fa2c6cc0d67cbbf6594711b6b5a84ae2bfd17c1d..6dadb01637c2a706f0a2c3973230e619f1fa6232 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(Document&, HTMLFormElement*);
|
|
|
| int cols() const { return m_cols; }
|
| int rows() const { return m_rows; }
|
| @@ -60,7 +60,7 @@ public:
|
| void setRows(int);
|
|
|
| private:
|
| - HTMLTextAreaElement(const QualifiedName&, Document&, HTMLFormElement*);
|
| + HTMLTextAreaElement(Document&, HTMLFormElement*);
|
|
|
| enum WrapMethod { NoWrap, SoftWrap, HardWrap };
|
|
|
|
|