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

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

Issue 2561043002: Clean-up after Form Association Refactoring (Closed)
Patch Set: Removed constructorNeedsFormElement from scripts and HTMLTagNames 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..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 };
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTagNames.in ('k') | third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698