Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Unified Diff: third_party/WebKit/Source/core/html/HTMLFieldSetElement.h

Issue 2561043002: Clean-up after Form Association Refactoring (Closed)
Patch Set: Remove redundant code path/arguments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698