[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.16-1409-g5afdf4d
ap at apple.com
ap at apple.com
Thu Dec 3 13:31:35 UTC 2009
The following commit has been merged in the webkit-1.1 branch:
commit 0fff83e1aed5127f28090409fe3401082926d8f5
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