Index: third_party/WebKit/Source/core/html/HTMLTextAreaElement.h |
diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h |
index e2d67c66691a59e8e296194388a78aa5e7ba8988..eeaf44229ff520524e9e564db03a9d1f528bde54 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h |
+++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h |
@@ -36,7 +36,7 @@ class CORE_EXPORT HTMLTextAreaElement final : public TextControlElement { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
- static HTMLTextAreaElement* create(Document&, HTMLFormElement*); |
+ static HTMLTextAreaElement* create(Document&); |
unsigned cols() const { return m_cols; } |
unsigned rows() const { return m_rows; } |
@@ -65,7 +65,7 @@ class CORE_EXPORT HTMLTextAreaElement final : public TextControlElement { |
private: |
FRIEND_TEST_ALL_PREFIXES(HTMLTextAreaElementTest, SanitizeUserInputValue); |
- HTMLTextAreaElement(Document&, HTMLFormElement*); |
+ explicit HTMLTextAreaElement(Document&); |
enum WrapMethod { NoWrap, SoftWrap, HardWrap }; |
enum SetValueCommonOption { NotSetSelection, SetSeletion }; |