Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/HTMLOutputElement.h |
| diff --git a/third_party/WebKit/Source/core/html/HTMLOutputElement.h b/third_party/WebKit/Source/core/html/HTMLOutputElement.h |
| index d512f4c31447252ce6df92be7d8a0eccc016d398..6bb67cdad36ba7de2e901f8a9f387e7efa08a5b5 100644 |
| --- a/third_party/WebKit/Source/core/html/HTMLOutputElement.h |
| +++ b/third_party/WebKit/Source/core/html/HTMLOutputElement.h |
| @@ -42,7 +42,7 @@ class CORE_EXPORT HTMLOutputElement final : public HTMLFormControlElement, |
| USING_GARBAGE_COLLECTED_MIXIN(HTMLOutputElement); |
| public: |
| - static HTMLOutputElement* create(Document&, HTMLFormElement*); |
| + static HTMLOutputElement* create(Document&); |
| ~HTMLOutputElement() override; |
| bool willValidate() const override { return false; } |
| @@ -59,7 +59,7 @@ class CORE_EXPORT HTMLOutputElement final : public HTMLFormControlElement, |
| DECLARE_VIRTUAL_TRACE(); |
| private: |
| - HTMLOutputElement(Document&, HTMLFormElement*); |
| + HTMLOutputElement(Document&); |
|
tkent
2016/12/09 01:27:30
Prepend 'explicit'
|
| void parseAttribute(const QualifiedName&, |
| const AtomicString&, |