[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 12:33:10 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 9ee5cf19bec7e4b0d4c143669003b5bca3881c1d
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 25 08:06:58 2010 +0000

    2010-08-25  Patrick Gansterer  <paroga at paroga.com>
    
            Reviewed by Adam Roben.
    
            Add missing methods at ResourceHandleWin
            https://bugs.webkit.org/show_bug.cgi?id=44453
    
            * platform/network/win/ResourceHandleWin.cpp:
            (WebCore::ResourceHandle::willLoadFromCache):
            (WebCore::prefetchDNS):
            (WebCore::ResourceHandle::bufferedData):
            (WebCore::ResourceHandle::supportsBufferedData):
            (WebCore::ResourceHandle::loadsBlocked):
            (WebCore::ResourceHandle::platformSetDefersLoading):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65994 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 40366c9..e01d03f 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,18 @@
+2010-08-25  Patrick Gansterer  <paroga at paroga.com>
+
+        Reviewed by Adam Roben.
+
+        Add missing methods at ResourceHandleWin
+        https://bugs.webkit.org/show_bug.cgi?id=44453
+
+        * platform/network/win/ResourceHandleWin.cpp:
+        (WebCore::ResourceHandle::willLoadFromCache):
+        (WebCore::prefetchDNS):
+        (WebCore::ResourceHandle::bufferedData):
+        (WebCore::ResourceHandle::supportsBufferedData):
+        (WebCore::ResourceHandle::loadsBlocked):
+        (WebCore::ResourceHandle::platformSetDefersLoading):
+
 2010-08-25  Adam Barth  <abarth at webkit.org>
 
         Second attempt to fix Qt build
diff --git a/WebCore/platform/network/win/ResourceHandleWin.cpp b/WebCore/platform/network/win/ResourceHandleWin.cpp
index 425fe80..3dabd91 100644
--- a/WebCore/platform/network/win/ResourceHandleWin.cpp
+++ b/WebCore/platform/network/win/ResourceHandleWin.cpp
@@ -549,4 +549,36 @@ bool ResourceHandle::hasReceivedResponse() const
     return d->m_hasReceivedResponse;
 }
 
+bool ResourceHandle::willLoadFromCache(ResourceRequest&, Frame*)
+{
+    notImplemented();
+    return false;
+}
+
+void prefetchDNS(const String&)
+{
+    notImplemented();
+}
+
+PassRefPtr<SharedBuffer> ResourceHandle::bufferedData()
+{
+    ASSERT_NOT_REACHED();
+    return 0;
+}
+
+bool ResourceHandle::supportsBufferedData()
+{
+    return false;
+}
+
+bool ResourceHandle::loadsBlocked()
+{
+    return false;
+}
+
+void ResourceHandle::platformSetDefersLoading(bool)
+{
+    notImplemented();
+}
+
 } // namespace WebCore

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list