| Index: Source/core/html/HTMLInputElement.h
|
| diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
|
| index ee3d4024ec7baeb00e1ace8cafd655d960f9ddb4..6004b83837bf0f45f4848c720a1b09b1f6e30dce 100644
|
| --- a/Source/core/html/HTMLInputElement.h
|
| +++ b/Source/core/html/HTMLInputElement.h
|
| @@ -47,7 +47,7 @@ struct DateTimeChooserParameters;
|
|
|
| class HTMLInputElement : public HTMLTextFormControlElement {
|
| public:
|
| - static PassRefPtr<HTMLInputElement> create(const QualifiedName&, Document&, HTMLFormElement*, bool createdByParser);
|
| + static PassRefPtr<HTMLInputElement> create(Document&, HTMLFormElement*, bool createdByParser);
|
| virtual ~HTMLInputElement();
|
|
|
| DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitspeechchange);
|
| @@ -280,7 +280,7 @@ public:
|
| bool supportsInputModeAttribute() const;
|
|
|
| protected:
|
| - HTMLInputElement(const QualifiedName&, Document&, HTMLFormElement*, bool createdByParser);
|
| + HTMLInputElement(Document&, HTMLFormElement*, bool createdByParser);
|
|
|
| virtual void defaultEventHandler(Event*);
|
|
|
|
|