webengine/osswebengine/WebCore/loader/CachedXBLDocument.cpp
changeset 5 10e98eab6f85
parent 0 dd21522fd290
--- a/webengine/osswebengine/WebCore/loader/CachedXBLDocument.cpp	Fri May 08 08:25:06 2009 +0300
+++ b/webengine/osswebengine/WebCore/loader/CachedXBLDocument.cpp	Fri Jul 03 15:54:40 2009 +0100
@@ -40,15 +40,12 @@
 
 namespace WebCore {
 
-CachedXBLDocument::CachedXBLDocument(DocLoader* dl, const String &url)
+CachedXBLDocument::CachedXBLDocument(const String &url)
 : CachedResource(url, XBL), m_document(0)
 {
     // It's XML we want.
     setAccept("text/xml, application/xml, application/xhtml+xml, text/xsl, application/rss+xml, application/atom+xml");
     
-    // Load the file
-    Cache::loader()->load(dl, this, false);
-    m_loading = true;
     m_decoder = new TextResourceDecoder("application/xml");
 }