| Index: third_party/WebKit/Source/core/html/HTMLButtonElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLButtonElement.h b/third_party/WebKit/Source/core/html/HTMLButtonElement.h
|
| index f1d9b3ca476b6cecad13d2518ae6c885074541ea..299a18dc1f695423a313a151f5322d2d26151e09 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLButtonElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLButtonElement.h
|
| @@ -32,7 +32,7 @@ class HTMLButtonElement final : public HTMLFormControlElement {
|
| DEFINE_WRAPPERTYPEINFO();
|
|
|
| public:
|
| - static HTMLButtonElement* create(Document&, HTMLFormElement*);
|
| + static HTMLButtonElement* create(Document&);
|
|
|
| void setType(const AtomicString&);
|
|
|
| @@ -41,7 +41,7 @@ class HTMLButtonElement final : public HTMLFormControlElement {
|
| bool willRespondToMouseClickEvents() override;
|
|
|
| private:
|
| - HTMLButtonElement(Document&, HTMLFormElement*);
|
| + explicit HTMLButtonElement(Document&);
|
|
|
| enum Type { SUBMIT, RESET, BUTTON };
|
|
|
|
|