Title: [207231] trunk/Source/WebKit/win
Revision
207231
Author
bfulg...@apple.com
Date
2016-10-12 12:03:26 -0700 (Wed, 12 Oct 2016)

Log Message

[Win] Unreviewed build fix after r207218.

The CQ-landed patch used the old USE(CFNETWORK) compiler guard.
It should be using USE(CFURLCONNECTION).

* WebCache.cpp: Missed one!

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (207230 => 207231)


--- trunk/Source/WebKit/win/ChangeLog	2016-10-12 19:01:21 UTC (rev 207230)
+++ trunk/Source/WebKit/win/ChangeLog	2016-10-12 19:03:26 UTC (rev 207231)
@@ -5,6 +5,15 @@
         The CQ-landed patch used the old USE(CFNETWORK) compiler guard.
         It should be using USE(CFURLCONNECTION).
 
+        * WebCache.cpp: Missed one!
+
+2016-10-12  Brent Fulgham  <bfulg...@apple.com>
+
+        [Win] Unreviewed build fix after r207218.
+
+        The CQ-landed patch used the old USE(CFNETWORK) compiler guard.
+        It should be using USE(CFURLCONNECTION).
+
         * WebCache.cpp:
         (WebCache::cacheFolder):
         (WebCache::setCacheFolder):

Modified: trunk/Source/WebKit/win/WebCache.cpp (207230 => 207231)


--- trunk/Source/WebKit/win/WebCache.cpp	2016-10-12 19:01:21 UTC (rev 207230)
+++ trunk/Source/WebKit/win/WebCache.cpp	2016-10-12 19:03:26 UTC (rev 207231)
@@ -35,7 +35,7 @@
 
 #if USE(CURL)
 #include <WebCore/CurlCacheManager.h>
-#elif USE(CFNETWORK)
+#elif USE(CFURLCONNECTION)
 #include <CFNetwork/CFURLCachePriv.h>
 #include <WebKitSystemInterface/WebKitSystemInterface.h>
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to