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..931308fe472d1be56ff6adee7f0d6c64425e1206 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*); |
+ HTMLButtonElement(Document&); |
tkent
2016/12/09 01:27:30
Prepend 'explicit'
|
enum Type { SUBMIT, RESET, BUTTON }; |