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

Unified Diff: third_party/WebKit/Source/core/html/HTMLObjectElement.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/HTMLObjectElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp b/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
index c0ce0a42bbb20f95893c562321d5ecb62b8be5a2..4239f69d2988eb3fe8f721350dfdfd339b228497 100644
--- a/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
@@ -50,7 +50,6 @@ namespace blink {
using namespace HTMLNames;
inline HTMLObjectElement::HTMLObjectElement(Document& document,
- HTMLFormElement* form,
bool createdByParser)
: HTMLPlugInElement(objectTag,
document,
@@ -62,10 +61,8 @@ inline HTMLObjectElement::HTMLObjectElement(Document& document,
inline HTMLObjectElement::~HTMLObjectElement() {}
HTMLObjectElement* HTMLObjectElement::create(Document& document,
- HTMLFormElement* form,
bool createdByParser) {
- HTMLObjectElement* element =
- new HTMLObjectElement(document, form, createdByParser);
+ HTMLObjectElement* element = new HTMLObjectElement(document, createdByParser);
element->ensureUserAgentShadowRoot();
return element;
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLObjectElement.h ('k') | third_party/WebKit/Source/core/html/HTMLOutputElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698