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

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

Issue 66643004: Remove QualifiedName argument from most HTMLElement::create functions (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Hack for XML prefix Created 7 years, 1 month 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: 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 };

Powered by Google App Engine
This is Rietveld 408576698