Title: [197572] trunk/Source
Revision
197572
Author
[email protected]
Date
2016-03-04 11:05:00 -0800 (Fri, 04 Mar 2016)

Log Message

Use NSURLSession for loading in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=154993

Reviewed by Sam Weinig.

Source/WebKit2:

* config.h:

Source/WTF:

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (197571 => 197572)


--- trunk/Source/WTF/ChangeLog	2016-03-04 18:48:57 UTC (rev 197571)
+++ trunk/Source/WTF/ChangeLog	2016-03-04 19:05:00 UTC (rev 197572)
@@ -1,3 +1,12 @@
+2016-03-04  Alex Christensen  <[email protected]>
+
+        Use NSURLSession for loading in WebKit2
+        https://bugs.webkit.org/show_bug.cgi?id=154993
+
+        Reviewed by Sam Weinig.
+
+        * wtf/Platform.h:
+
 2016-03-03  Daniel Bates  <[email protected]>
 
         Add unit tests for WTF::OptionSet

Modified: trunk/Source/WTF/wtf/Platform.h (197571 => 197572)


--- trunk/Source/WTF/wtf/Platform.h	2016-03-04 18:48:57 UTC (rev 197571)
+++ trunk/Source/WTF/wtf/Platform.h	2016-03-04 19:05:00 UTC (rev 197572)
@@ -553,9 +553,6 @@
 
 #define HAVE_NETWORK_EXTENSION 1
 #define HAVE_READLINE 1
-#if USE(APPLE_INTERNAL_SDK)
-#define USE_CFNETWORK 1
-#endif
 #define USE_UIKIT_EDITING 1
 #define USE_WEB_THREAD 1
 

Modified: trunk/Source/WebKit2/ChangeLog (197571 => 197572)


--- trunk/Source/WebKit2/ChangeLog	2016-03-04 18:48:57 UTC (rev 197571)
+++ trunk/Source/WebKit2/ChangeLog	2016-03-04 19:05:00 UTC (rev 197572)
@@ -1,5 +1,14 @@
 2016-03-04  Alex Christensen  <[email protected]>
 
+        Use NSURLSession for loading in WebKit2
+        https://bugs.webkit.org/show_bug.cgi?id=154993
+
+        Reviewed by Sam Weinig.
+
+        * config.h:
+
+2016-03-04  Alex Christensen  <[email protected]>
+
         Use NetworkSession for pings
         https://bugs.webkit.org/show_bug.cgi?id=154984
 

Modified: trunk/Source/WebKit2/config.h (197571 => 197572)


--- trunk/Source/WebKit2/config.h	2016-03-04 18:48:57 UTC (rev 197571)
+++ trunk/Source/WebKit2/config.h	2016-03-04 19:05:00 UTC (rev 197572)
@@ -73,8 +73,11 @@
 #ifndef HAVE_WINDOW_SERVER_OCCLUSION_NOTIFICATIONS
 #define HAVE_WINDOW_SERVER_OCCLUSION_NOTIFICATIONS 1
 #endif
+#endif
+
+#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 100000)
 #ifndef USE_NETWORK_SESSION
-#define USE_NETWORK_SESSION 0
+#define USE_NETWORK_SESSION 1
 #endif
 
 // FIXME: We should work towards not using CredentialStorage in WebKit2 to not have problems with digest authentication.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to