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

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

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/HTMLFieldSetElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
index 00cf5d37a68df806a8a46188d70a68ad9e72b437..5d2bbba302e9ec8ebdefb0caea82d0d511f485d1 100644
--- a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
@@ -36,13 +36,11 @@ namespace blink {
using namespace HTMLNames;
-inline HTMLFieldSetElement::HTMLFieldSetElement(Document& document,
- HTMLFormElement* form)
- : HTMLFormControlElement(fieldsetTag, document, form) {}
+inline HTMLFieldSetElement::HTMLFieldSetElement(Document& document)
+ : HTMLFormControlElement(fieldsetTag, document) {}
-HTMLFieldSetElement* HTMLFieldSetElement::create(Document& document,
- HTMLFormElement* form) {
- return new HTMLFieldSetElement(document, form);
+HTMLFieldSetElement* HTMLFieldSetElement::create(Document& document) {
+ return new HTMLFieldSetElement(document);
}
bool HTMLFieldSetElement::matchesValidityPseudoClasses() const {

Powered by Google App Engine
This is Rietveld 408576698