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

Unified Diff: Source/core/html/HTMLImageElement.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/HTMLImageElement.h
diff --git a/Source/core/html/HTMLImageElement.h b/Source/core/html/HTMLImageElement.h
index 6ae7f628730ed3467feb61017ff6aec8747afb49..d39fb540908d7c35db34d0f3d430ba53b6a201d2 100644
--- a/Source/core/html/HTMLImageElement.h
+++ b/Source/core/html/HTMLImageElement.h
@@ -36,7 +36,7 @@ class HTMLImageElement FINAL : public HTMLElement {
friend class HTMLFormElement;
public:
static PassRefPtr<HTMLImageElement> create(Document&);
- static PassRefPtr<HTMLImageElement> create(const QualifiedName&, Document&, HTMLFormElement*);
+ static PassRefPtr<HTMLImageElement> create(Document&, HTMLFormElement*);
static PassRefPtr<HTMLImageElement> createForJSConstructor(Document&, int width, int height);
virtual ~HTMLImageElement();
@@ -82,7 +82,7 @@ public:
virtual const AtomicString imageSourceURL() const OVERRIDE;
protected:
- HTMLImageElement(const QualifiedName&, Document&, HTMLFormElement* = 0);
+ explicit HTMLImageElement(Document&, HTMLFormElement* = 0);
virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698