Title: [173196] trunk/Source/WebCore
Revision
173196
Author
[email protected]
Date
2014-09-02 17:51:44 -0700 (Tue, 02 Sep 2014)

Log Message

[Win] Attempt to fix the Windows build after <http://trac.webkit.org/changeset/173192>
(https://bugs.webkit.org/show_bug.cgi?id=136467)

Declare ResourceHandleClient::connectionProperties() when building for iOS or when USE(CFNETWORK).

* platform/network/ResourceHandleClient.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (173195 => 173196)


--- trunk/Source/WebCore/ChangeLog	2014-09-03 00:46:45 UTC (rev 173195)
+++ trunk/Source/WebCore/ChangeLog	2014-09-03 00:51:44 UTC (rev 173196)
@@ -1,5 +1,14 @@
 2014-09-02  Daniel Bates  <[email protected]>
 
+        [Win] Attempt to fix the Windows build after <http://trac.webkit.org/changeset/173192>
+        (https://bugs.webkit.org/show_bug.cgi?id=136467)
+
+        Declare ResourceHandleClient::connectionProperties() when building for iOS or when USE(CFNETWORK).
+
+        * platform/network/ResourceHandleClient.h:
+
+2014-09-02  Daniel Bates  <[email protected]>
+
         [iOS] Support using Foundation networking code
         https://bugs.webkit.org/show_bug.cgi?id=136467
 

Modified: trunk/Source/WebCore/platform/network/ResourceHandleClient.h (173195 => 173196)


--- trunk/Source/WebCore/platform/network/ResourceHandleClient.h	2014-09-03 00:46:45 UTC (rev 173195)
+++ trunk/Source/WebCore/platform/network/ResourceHandleClient.h	2014-09-03 00:51:44 UTC (rev 173196)
@@ -118,7 +118,7 @@
 #endif
         virtual void receivedCancellation(ResourceHandle*, const AuthenticationChallenge&) { }
 
-#if PLATFORM(IOS)
+#if PLATFORM(IOS) || USE(CFNETWORK)
         virtual RetainPtr<CFDictionaryRef> connectionProperties(ResourceHandle*) { return nullptr; }
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to