| Index: Source/core/html/HTMLFrameSetElement.h
|
| diff --git a/Source/core/html/HTMLFrameSetElement.h b/Source/core/html/HTMLFrameSetElement.h
|
| index 2815c1acd2c568381e9c5edd3add9e825ad4fb9c..3138495cd2b215773766bdf46cc77766b04f5007 100644
|
| --- a/Source/core/html/HTMLFrameSetElement.h
|
| +++ b/Source/core/html/HTMLFrameSetElement.h
|
| @@ -31,7 +31,7 @@ namespace WebCore {
|
|
|
| class HTMLFrameSetElement FINAL : public HTMLElement {
|
| public:
|
| - static PassRefPtr<HTMLFrameSetElement> create(const QualifiedName&, Document&);
|
| + static PassRefPtr<HTMLFrameSetElement> create(Document&);
|
|
|
| bool hasFrameBorder() const { return m_frameborder; }
|
| bool noResize() const { return m_noresize; }
|
| @@ -58,7 +58,7 @@ public:
|
| #endif
|
|
|
| private:
|
| - HTMLFrameSetElement(const QualifiedName&, Document&);
|
| + explicit HTMLFrameSetElement(Document&);
|
|
|
| virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
|
|
|