diff options
Diffstat (limited to 'WebCore/html/HTMLEmbedElement.h')
-rw-r--r-- | WebCore/html/HTMLEmbedElement.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/WebCore/html/HTMLEmbedElement.h b/WebCore/html/HTMLEmbedElement.h index 5f4df67..e27b717 100644 --- a/WebCore/html/HTMLEmbedElement.h +++ b/WebCore/html/HTMLEmbedElement.h @@ -29,20 +29,15 @@ namespace WebCore { class HTMLEmbedElement : public HTMLPlugInImageElement { public: - static PassRefPtr<HTMLEmbedElement> create(const QualifiedName&, Document*); - - void setNeedWidgetUpdate(bool needWidgetUpdate) { m_needWidgetUpdate = needWidgetUpdate; } + static PassRefPtr<HTMLEmbedElement> create(const QualifiedName&, Document*, bool createdByParser); private: - HTMLEmbedElement(const QualifiedName&, Document*); + HTMLEmbedElement(const QualifiedName&, Document*, bool createdByParser); virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const; virtual void parseMappedAttribute(Attribute*); - virtual void attach(); - virtual bool canLazyAttach() { return false; } virtual bool rendererIsNeeded(RenderStyle*); - virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); virtual void insertedIntoDocument(); virtual void removedFromDocument(); virtual void attributeChanged(Attribute*, bool preserveDecls = false); @@ -50,13 +45,9 @@ private: virtual bool isURLAttribute(Attribute*) const; virtual const QualifiedName& imageSourceAttributeName() const; - virtual void updateWidget(); - virtual RenderWidget* renderWidgetForJSBindings() const; virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; - - bool m_needWidgetUpdate; }; } |