| 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;
|
|
|
|
|