Title: [198641] trunk/Source/WTF
Revision
198641
Author
[email protected]
Date
2016-03-24 12:56:58 -0700 (Thu, 24 Mar 2016)

Log Message

Fix iOS9 performance regression after r197572
https://bugs.webkit.org/show_bug.cgi?id=155845
<rdar://problem/25144924>

Patch by Alex Christensen <[email protected]> on 2016-03-24
Reviewed by Chris Dumez.

* wtf/Platform.h:
Use CFURLConnection instead of NSURLConnection on internal iOS9 builds.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (198640 => 198641)


--- trunk/Source/WTF/ChangeLog	2016-03-24 19:05:22 UTC (rev 198640)
+++ trunk/Source/WTF/ChangeLog	2016-03-24 19:56:58 UTC (rev 198641)
@@ -1,3 +1,14 @@
+2016-03-24  Alex Christensen  <[email protected]>
+
+        Fix iOS9 performance regression after r197572
+        https://bugs.webkit.org/show_bug.cgi?id=155845
+        <rdar://problem/25144924>
+
+        Reviewed by Chris Dumez.
+
+        * wtf/Platform.h:
+        Use CFURLConnection instead of NSURLConnection on internal iOS9 builds.
+
 2016-03-23  Saam Barati  <[email protected]>
 
         SmallPtrSet leaks memory in its move assignment operator when !this->isSmall()

Modified: trunk/Source/WTF/wtf/Platform.h (198640 => 198641)


--- trunk/Source/WTF/wtf/Platform.h	2016-03-24 19:05:22 UTC (rev 198640)
+++ trunk/Source/WTF/wtf/Platform.h	2016-03-24 19:56:58 UTC (rev 198641)
@@ -551,6 +551,10 @@
 
 #if PLATFORM(IOS)
 
+#if USE(APPLE_INTERNAL_SDK) && __IPHONE_OS_VERSION_MIN_REQUIRED < 100000
+#define USE_CFNETWORK 1
+#endif
+
 #define HAVE_NETWORK_EXTENSION 1
 #define HAVE_READLINE 1
 #define USE_UIKIT_EDITING 1
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to