Title: [172508] trunk/Source/WTF
Revision
172508
Author
[email protected]
Date
2014-08-12 16:45:48 -0700 (Tue, 12 Aug 2014)

Log Message

Enable didReceiveDataArray callback on Mac
https://bugs.webkit.org/show_bug.cgi?id=135554
<rdar://problem/9170731>

Reviewed by Andreas Kling.

Enable WTF_USE_NETWORK_CFDATA_ARRAY_CALLBACK for all Cocoa platforms so that we use the same
code path for Mac and iOS.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (172507 => 172508)


--- trunk/Source/WTF/ChangeLog	2014-08-12 23:40:27 UTC (rev 172507)
+++ trunk/Source/WTF/ChangeLog	2014-08-12 23:45:48 UTC (rev 172508)
@@ -1,3 +1,16 @@
+2014-08-12  Pratik Solanki  <[email protected]>
+
+        Enable didReceiveDataArray callback on Mac
+        https://bugs.webkit.org/show_bug.cgi?id=135554
+        <rdar://problem/9170731>
+
+        Reviewed by Andreas Kling.
+
+        Enable WTF_USE_NETWORK_CFDATA_ARRAY_CALLBACK for all Cocoa platforms so that we use the same
+        code path for Mac and iOS.
+
+        * wtf/Platform.h:
+
 2014-08-12  Alex Christensen  <[email protected]>
 
         Generate header detection headers for CMake on Windows.

Modified: trunk/Source/WTF/wtf/Platform.h (172507 => 172508)


--- trunk/Source/WTF/wtf/Platform.h	2014-08-12 23:40:27 UTC (rev 172507)
+++ trunk/Source/WTF/wtf/Platform.h	2014-08-12 23:45:48 UTC (rev 172508)
@@ -465,14 +465,12 @@
 
 #define WTF_USE_CF 1
 #define WTF_USE_FOUNDATION 1
+#define WTF_USE_NETWORK_CFDATA_ARRAY_CALLBACK 1
 #define ENABLE_USER_MESSAGE_HANDLERS 1
+#define HAVE_OUT_OF_PROCESS_LAYER_HOSTING 1
 
 #endif
 
-#if PLATFORM(COCOA)
-#define HAVE_OUT_OF_PROCESS_LAYER_HOSTING 1
-#endif
-
 #if PLATFORM(MAC)
 
 #define WTF_USE_APPKIT 1
@@ -501,7 +499,6 @@
 #define DONT_FINALIZE_ON_MAIN_THREAD 1
 #define HAVE_READLINE 1
 #define WTF_USE_CFNETWORK 1
-#define WTF_USE_NETWORK_CFDATA_ARRAY_CALLBACK 1
 #define WTF_USE_UIKIT_EDITING 1
 #define WTF_USE_WEB_THREAD 1
 #define WTF_USE_QUICK_LOOK 1
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to