| Index: Source/core/html/HTMLKeygenElement.h
|
| diff --git a/Source/core/html/HTMLKeygenElement.h b/Source/core/html/HTMLKeygenElement.h
|
| index 5c53ac4d56cf094ad917265e0ca792a5135ff04f..292a78ea29d628288f44b2d0649da4958572fe79 100644
|
| --- a/Source/core/html/HTMLKeygenElement.h
|
| +++ b/Source/core/html/HTMLKeygenElement.h
|
| @@ -32,15 +32,15 @@ class HTMLSelectElement;
|
|
|
| class HTMLKeygenElement FINAL : public HTMLFormControlElementWithState {
|
| public:
|
| - static PassRefPtr<HTMLKeygenElement> create(const QualifiedName& tagName, Document& document, HTMLFormElement* form)
|
| + static PassRefPtr<HTMLKeygenElement> create(Document& document, HTMLFormElement* form)
|
| {
|
| - return adoptRef(new HTMLKeygenElement(tagName, document, form));
|
| + return adoptRef(new HTMLKeygenElement(document, form));
|
| }
|
|
|
| virtual bool willValidate() const OVERRIDE { return false; }
|
|
|
| private:
|
| - HTMLKeygenElement(const QualifiedName&, Document&, HTMLFormElement*);
|
| + HTMLKeygenElement(Document&, HTMLFormElement*);
|
|
|
| virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
|
|
|
|
|