summaryrefslogtreecommitdiffstats
path: root/WebCore/loader/icon/IconFetcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/loader/icon/IconFetcher.cpp')
-rw-r--r--WebCore/loader/icon/IconFetcher.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/WebCore/loader/icon/IconFetcher.cpp b/WebCore/loader/icon/IconFetcher.cpp
index 1107d7b..f6b80fa 100644
--- a/WebCore/loader/icon/IconFetcher.cpp
+++ b/WebCore/loader/icon/IconFetcher.cpp
@@ -27,6 +27,7 @@
#include "IconFetcher.h"
#include "Frame.h"
+#include "FrameLoaderClient.h"
#include "HTMLHeadElement.h"
#include "HTMLLinkElement.h"
#include "HTMLNames.h"
@@ -173,7 +174,7 @@ void IconFetcher::loadEntry()
ASSERT(m_currentEntry < m_entries.size());
ASSERT(!m_handle);
- m_handle = ResourceHandle::create(m_entries[m_currentEntry].url(), this, m_frame, false, false);
+ m_handle = ResourceHandle::create(m_frame->loader()->networkingContext(), m_entries[m_currentEntry].url(), this, false, false);
}
void IconFetcher::loadFailed()
@@ -201,7 +202,7 @@ void IconFetcher::didReceiveData(ResourceHandle* handle, const char* data, int l
m_entries[m_currentEntry].buffer()->append(data, length);
}
-void IconFetcher::didFinishLoading(ResourceHandle* handle)
+void IconFetcher::didFinishLoading(ResourceHandle* handle, double)
{
ASSERT_UNUSED(handle, m_handle == handle);