[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

ap at apple.com ap at apple.com
Wed Apr 7 23:29:53 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 330ca29db5bb64b4d2d914431b1d378573f73fad
Author: ap at apple.com <ap at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 10 23:03:36 2009 +0000

            Qt build fix.
    
            * platform/network/ResourceHandle.h: Only inherit from AuthenticationClient on platforms
            that use ResourceHandle as a delegate (Mac, CFNetwork, Curl).
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50774 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 71558da..09227d7 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,10 @@
+2009-11-10  Alexey Proskuryakov  <ap at apple.com>
+
+        Qt build fix.
+
+        * platform/network/ResourceHandle.h: Only inherit from AuthenticationClient on platforms
+        that use ResourceHandle as a delegate (Mac, CFNetwork, Curl).
+
 2009-11-10  Beth Dakin  <bdakin at apple.com>
 
         Tiger build fix. No review needed.
diff --git a/WebCore/platform/network/ResourceHandle.h b/WebCore/platform/network/ResourceHandle.h
index 3fa08e8..21af0cd 100644
--- a/WebCore/platform/network/ResourceHandle.h
+++ b/WebCore/platform/network/ResourceHandle.h
@@ -92,7 +92,11 @@ class SharedBuffer;
 
 template <typename T> class Timer;
 
-class ResourceHandle : public RefCounted<ResourceHandle>, public AuthenticationClient {
+class ResourceHandle : public RefCounted<ResourceHandle>
+#if PLATFORM(MAC) || USE(CFNETWORK) || USE(CURL)
+    , public AuthenticationClient
+#endif
+    {
 private:
     ResourceHandle(const ResourceRequest&, ResourceHandleClient*, bool defersLoading, bool shouldContentSniff, bool mightDownloadFromHandle);
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list