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

Unified Diff: third_party/WebKit/Source/core/html/HTMLOutputElement.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/HTMLOutputElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLOutputElement.h b/third_party/WebKit/Source/core/html/HTMLOutputElement.h
index d512f4c31447252ce6df92be7d8a0eccc016d398..6bb67cdad36ba7de2e901f8a9f387e7efa08a5b5 100644
--- a/third_party/WebKit/Source/core/html/HTMLOutputElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLOutputElement.h
@@ -42,7 +42,7 @@ class CORE_EXPORT HTMLOutputElement final : public HTMLFormControlElement,
USING_GARBAGE_COLLECTED_MIXIN(HTMLOutputElement);
public:
- static HTMLOutputElement* create(Document&, HTMLFormElement*);
+ static HTMLOutputElement* create(Document&);
~HTMLOutputElement() override;
bool willValidate() const override { return false; }
@@ -59,7 +59,7 @@ class CORE_EXPORT HTMLOutputElement final : public HTMLFormControlElement,
DECLARE_VIRTUAL_TRACE();
private:
- HTMLOutputElement(Document&, HTMLFormElement*);
+ HTMLOutputElement(Document&);
tkent 2016/12/09 01:27:30 Prepend 'explicit'
void parseAttribute(const QualifiedName&,
const AtomicString&,

Powered by Google App Engine
This is Rietveld 408576698