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

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

Issue 2561043002: Clean-up after Form Association Refactoring (Closed)
Patch Set: Removed constructorNeedsFormElement from scripts and HTMLTagNames 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/HTMLSelectElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLSelectElement.h b/third_party/WebKit/Source/core/html/HTMLSelectElement.h
index acda5ac4feefe34d3545574c1644c8c0628c0877..7e12b735aab7b8d54c8152bbcd204d1da7f7c54f 100644
--- a/third_party/WebKit/Source/core/html/HTMLSelectElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.h
@@ -54,7 +54,6 @@ class CORE_EXPORT HTMLSelectElement final
public:
static HTMLSelectElement* create(Document&);
- static HTMLSelectElement* create(Document&, HTMLFormElement*);
~HTMLSelectElement() override;
int selectedIndex() const;
@@ -173,7 +172,7 @@ class CORE_EXPORT HTMLSelectElement final
DECLARE_VIRTUAL_TRACE();
protected:
- HTMLSelectElement(Document&, HTMLFormElement*);
+ explicit HTMLSelectElement(Document&);
private:
const AtomicString& formControlType() const override;

Powered by Google App Engine
This is Rietveld 408576698