Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/HTMLFieldSetElement.h |
| diff --git a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.h b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.h |
| index 9c1a4970166212061d6009eae5919a977f833e3d..30c97efb1e000a6e9642e8bf2f147e13399d195e 100644 |
| --- a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.h |
| +++ b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.h |
| @@ -35,7 +35,7 @@ class CORE_EXPORT HTMLFieldSetElement final : public HTMLFormControlElement { |
| DEFINE_WRAPPERTYPEINFO(); |
| public: |
| - static HTMLFieldSetElement* create(Document&, HTMLFormElement*); |
| + static HTMLFieldSetElement* create(Document&); |
| HTMLLegendElement* legend() const; |
| HTMLCollection* elements(); |
| @@ -43,7 +43,7 @@ class CORE_EXPORT HTMLFieldSetElement final : public HTMLFormControlElement { |
| void disabledAttributeChanged() override; |
| private: |
| - HTMLFieldSetElement(Document&, HTMLFormElement*); |
| + HTMLFieldSetElement(Document&); |
|
tkent
2016/12/09 01:27:30
Prepend 'explicit'
|
| bool isEnumeratable() const override { return true; } |
| bool supportsFocus() const override; |