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..352f435ed841a3de415a580da9c11dec9b559bd1 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*); |
+ HTMLTextAreaElement(Document&); |
tkent
2016/12/09 01:27:30
Prepend 'explicit'
|
enum WrapMethod { NoWrap, SoftWrap, HardWrap }; |
enum SetValueCommonOption { NotSetSelection, SetSeletion }; |