Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/HTMLKeygenElement.h |
| diff --git a/third_party/WebKit/Source/core/html/HTMLKeygenElement.h b/third_party/WebKit/Source/core/html/HTMLKeygenElement.h |
| index 42bebc968e05298380441daafc63d18b9dac7090..db55019472af9e89b304957b052a352d8d76bb2c 100644 |
| --- a/third_party/WebKit/Source/core/html/HTMLKeygenElement.h |
| +++ b/third_party/WebKit/Source/core/html/HTMLKeygenElement.h |
| @@ -34,14 +34,14 @@ class HTMLKeygenElement final : public HTMLFormControlElementWithState { |
| DEFINE_WRAPPERTYPEINFO(); |
| public: |
| - static HTMLKeygenElement* create(Document&, HTMLFormElement*); |
| + static HTMLKeygenElement* create(Document&); |
| bool willValidate() const override { return false; } |
| LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| private: |
| - HTMLKeygenElement(Document&, HTMLFormElement*); |
| + HTMLKeygenElement(Document&); |
|
tkent
2016/12/09 01:27:30
Prepend 'explicit'
|
| bool areAuthorShadowsAllowed() const override { return false; } |