Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(444)

Unified Diff: third_party/WebKit/Source/core/html/HTMLTextAreaElement.h

Issue 2561043002: Clean-up after Form Association Refactoring (Closed)
Patch Set: Remove redundant code path/arguments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 };

Powered by Google App Engine
This is Rietveld 408576698