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

Unified Diff: Source/core/html/HTMLMapElement.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/HTMLMapElement.h
diff --git a/Source/core/html/HTMLMapElement.h b/Source/core/html/HTMLMapElement.h
index 369de11549129dc2086eb45a7bec65bc753253f5..cdd5c7654a8534086fc12f47248b5eecf271036e 100644
--- a/Source/core/html/HTMLMapElement.h
+++ b/Source/core/html/HTMLMapElement.h
@@ -33,7 +33,6 @@ class HTMLImageElement;
class HTMLMapElement FINAL : public HTMLElement {
public:
static PassRefPtr<HTMLMapElement> create(Document&);
- static PassRefPtr<HTMLMapElement> create(const QualifiedName&, Document&);
virtual ~HTMLMapElement();
const AtomicString& getName() const { return m_name; }
@@ -44,7 +43,7 @@ public:
PassRefPtr<HTMLCollection> areas();
private:
- HTMLMapElement(const QualifiedName&, Document&);
+ explicit HTMLMapElement(Document&);
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698