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

Unified Diff: Source/core/html/HTMLTemplateElement.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/HTMLTemplateElement.h
diff --git a/Source/core/html/HTMLTemplateElement.h b/Source/core/html/HTMLTemplateElement.h
index 883e85c19a44bce1cb6e7a8fac8a40e9936fc2b5..6b2ebd64db0f535164e5aa58c237caa4aabae077 100644
--- a/Source/core/html/HTMLTemplateElement.h
+++ b/Source/core/html/HTMLTemplateElement.h
@@ -40,7 +40,7 @@ class TemplateContentDocumentFragment;
class HTMLTemplateElement FINAL : public HTMLElement {
public:
- static PassRefPtr<HTMLTemplateElement> create(const QualifiedName&, Document&);
+ static PassRefPtr<HTMLTemplateElement> create(Document&);
virtual ~HTMLTemplateElement();
DocumentFragment* content() const;
@@ -49,7 +49,7 @@ private:
virtual PassRefPtr<Node> cloneNode(bool deep = true) OVERRIDE;
virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
- HTMLTemplateElement(const QualifiedName&, Document&);
+ explicit HTMLTemplateElement(Document&);
mutable RefPtr<TemplateContentDocumentFragment> m_content;
};

Powered by Google App Engine
This is Rietveld 408576698