summaryrefslogtreecommitdiffstats
path: root/WebCore/css/StyleSheet.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/css/StyleSheet.h')
-rw-r--r--WebCore/css/StyleSheet.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/WebCore/css/StyleSheet.h b/WebCore/css/StyleSheet.h
index 9384fc8..016d50a 100644
--- a/WebCore/css/StyleSheet.h
+++ b/WebCore/css/StyleSheet.h
@@ -21,9 +21,10 @@
#ifndef StyleSheet_h
#define StyleSheet_h
-#include "StyleList.h"
+#include "KURLHash.h"
#include "PlatformString.h"
-#include <wtf/HashSet.h>
+#include "StyleList.h"
+#include <wtf/ListHashSet.h>
namespace WebCore {
@@ -50,7 +51,9 @@ public:
virtual String type() const = 0;
virtual bool isLoading() = 0;
virtual void styleSheetChanged() { }
- virtual void addSubresourceURLStrings(HashSet<String>&, const String& baseURL) const { }
+
+ virtual KURL completeURL(const String& url) const;
+ virtual void addSubresourceStyleURLs(ListHashSet<KURL>&) { }
virtual bool parseString(const String&, bool strict = true) = 0;