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

Unified Diff: Source/core/html/HTMLHtmlElement.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/HTMLHtmlElement.h
diff --git a/Source/core/html/HTMLHtmlElement.h b/Source/core/html/HTMLHtmlElement.h
index 196cd55e2f973d5482232b90043702e380b1d0cc..4976aac0c8c4a2ae9bb671d140d52022ba4b1f19 100644
--- a/Source/core/html/HTMLHtmlElement.h
+++ b/Source/core/html/HTMLHtmlElement.h
@@ -31,12 +31,11 @@ namespace WebCore {
class HTMLHtmlElement FINAL : public HTMLElement {
public:
static PassRefPtr<HTMLHtmlElement> create(Document&);
- static PassRefPtr<HTMLHtmlElement> create(const QualifiedName&, Document&);
void insertedByParser();
private:
- HTMLHtmlElement(const QualifiedName&, Document&);
+ explicit HTMLHtmlElement(Document&);
virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
};

Powered by Google App Engine
This is Rietveld 408576698