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

Unified Diff: Source/core/html/HTMLLegendElement.h

Issue 66643004: Remove QualifiedName argument from most HTMLElement::create functions (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Hack for XML prefix Created 7 years, 1 month 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: Source/core/html/HTMLLegendElement.h
diff --git a/Source/core/html/HTMLLegendElement.h b/Source/core/html/HTMLLegendElement.h
index dded0f76a61b0757a5cbae7e0d3acb19c384bc45..4a8c2fa6caa3943aaf9d3629f1bbb42e6970de63 100644
--- a/Source/core/html/HTMLLegendElement.h
+++ b/Source/core/html/HTMLLegendElement.h
@@ -32,10 +32,10 @@ class HTMLFormControlElement;
class HTMLLegendElement FINAL : public HTMLElement {
public:
- static PassRefPtr<HTMLLegendElement> create(const QualifiedName&, Document&);
+ static PassRefPtr<HTMLLegendElement> create(Document&);
private:
- HTMLLegendElement(const QualifiedName&, Document&);
+ explicit HTMLLegendElement(Document&);
// Control in the legend's fieldset that gets focus and access key.
HTMLFormControlElement* associatedControl();

Powered by Google App Engine
This is Rietveld 408576698