| Index: Source/core/html/HTMLDialogElement.h
|
| diff --git a/Source/core/html/HTMLDialogElement.h b/Source/core/html/HTMLDialogElement.h
|
| index c78bd88171c56388d6dac01a7e5337ffb9110cb8..248044e98f853cead70f3c227bfef3bfb9ac0f81 100644
|
| --- a/Source/core/html/HTMLDialogElement.h
|
| +++ b/Source/core/html/HTMLDialogElement.h
|
| @@ -37,7 +37,7 @@ class QualifiedName;
|
|
|
| class HTMLDialogElement FINAL : public HTMLElement {
|
| public:
|
| - static PassRefPtr<HTMLDialogElement> create(const QualifiedName&, Document&);
|
| + static PassRefPtr<HTMLDialogElement> create(Document&);
|
|
|
| void close(const String& returnValue, ExceptionState&);
|
| void closeDialog(const String& returnValue = String());
|
| @@ -58,7 +58,7 @@ public:
|
| void setReturnValue(const String& returnValue) { m_returnValue = returnValue; }
|
|
|
| private:
|
| - HTMLDialogElement(const QualifiedName&, Document&);
|
| + explicit HTMLDialogElement(Document&);
|
|
|
| virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
|
| virtual void defaultEventHandler(Event*) OVERRIDE;
|
|
|