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

Unified Diff: third_party/WebKit/Source/core/html/HTMLKeygenElement.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/HTMLKeygenElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLKeygenElement.h b/third_party/WebKit/Source/core/html/HTMLKeygenElement.h
index 42bebc968e05298380441daafc63d18b9dac7090..d4bff6aeb54a8ae1d024cb45cea8b244d65ccc7f 100644
--- a/third_party/WebKit/Source/core/html/HTMLKeygenElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLKeygenElement.h
@@ -34,14 +34,14 @@ class HTMLKeygenElement final : public HTMLFormControlElementWithState {
DEFINE_WRAPPERTYPEINFO();
public:
- static HTMLKeygenElement* create(Document&, HTMLFormElement*);
+ static HTMLKeygenElement* create(Document&);
bool willValidate() const override { return false; }
LayoutObject* createLayoutObject(const ComputedStyle&) override;
private:
- HTMLKeygenElement(Document&, HTMLFormElement*);
+ explicit HTMLKeygenElement(Document&);
bool areAuthorShadowsAllowed() const override { return false; }

Powered by Google App Engine
This is Rietveld 408576698