summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLStyleElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLStyleElement.h')
-rw-r--r--WebCore/html/HTMLStyleElement.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/WebCore/html/HTMLStyleElement.h b/WebCore/html/HTMLStyleElement.h
index a85916f..fe3adb0 100644
--- a/WebCore/html/HTMLStyleElement.h
+++ b/WebCore/html/HTMLStyleElement.h
@@ -1,6 +1,4 @@
/*
- * This file is part of the DOM implementation for KDE.
- *
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* Copyright (C) 2003 Apple Computer, Inc.
@@ -33,7 +31,7 @@ namespace WebCore {
class HTMLStyleElement : public HTMLElement, public StyleElement
{
public:
- HTMLStyleElement(Document*);
+ HTMLStyleElement(const QualifiedName&, Document*, bool createdByParser);
virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; }
virtual int tagPriority() const { return 1; }
@@ -45,7 +43,6 @@ public:
virtual void removedFromDocument();
virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
- void setCreatedByParser(bool createdByParser) { m_createdByParser = createdByParser; }
virtual void finishParsingChildren();
virtual bool isLoading() const;
@@ -64,7 +61,7 @@ public:
virtual void setLoading(bool loading) { m_loading = loading; }
- virtual void getSubresourceAttributeStrings(Vector<String>&) const;
+ virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const;
protected:
String m_media;