| Index: Source/core/html/HTMLSourceElement.h
|
| diff --git a/Source/core/html/HTMLSourceElement.h b/Source/core/html/HTMLSourceElement.h
|
| index 200942718f5985c8b1f5872dc6afcca59faf182e..21f9777ff7586ee7861b62418981d41450ad8e95 100644
|
| --- a/Source/core/html/HTMLSourceElement.h
|
| +++ b/Source/core/html/HTMLSourceElement.h
|
| @@ -33,8 +33,7 @@ namespace WebCore {
|
|
|
| class HTMLSourceElement FINAL : public HTMLElement {
|
| public:
|
| - static PassRefPtr<HTMLSourceElement> create(Document& document) { return create(HTMLNames::sourceTag, document); }
|
| - static PassRefPtr<HTMLSourceElement> create(const QualifiedName&, Document&);
|
| + static PassRefPtr<HTMLSourceElement> create(Document&);
|
|
|
| String media() const;
|
| String type() const;
|
| @@ -46,7 +45,7 @@ public:
|
| void cancelPendingErrorEvent();
|
|
|
| private:
|
| - HTMLSourceElement(const QualifiedName&, Document&);
|
| + explicit HTMLSourceElement(Document&);
|
|
|
| virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
|
| virtual void removedFrom(ContainerNode*) OVERRIDE;
|
|
|