Title: [221058] trunk/Source/WebCore
Revision
221058
Author
[email protected]
Date
2017-08-22 17:06:50 -0700 (Tue, 22 Aug 2017)

Log Message

[Win] Fix compile errors.
https://bugs.webkit.org/show_bug.cgi?id=175860

Reviewed by Brent Fulgham.

Add required header files.

* platform/network/cf/CookieJarCFNet.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (221057 => 221058)


--- trunk/Source/WebCore/ChangeLog	2017-08-23 00:00:06 UTC (rev 221057)
+++ trunk/Source/WebCore/ChangeLog	2017-08-23 00:06:50 UTC (rev 221058)
@@ -1,3 +1,14 @@
+2017-08-22  Per Arne Vollan  <[email protected]>
+
+        [Win] Fix compile errors.
+        https://bugs.webkit.org/show_bug.cgi?id=175860
+
+        Reviewed by Brent Fulgham.
+
+        Add required header files. 
+
+        * platform/network/cf/CookieJarCFNet.cpp:
+
 2017-08-22  Brent Fulgham  <[email protected]>
 
         Correct SOUP builds after r221017 and r221050.

Modified: trunk/Source/WebCore/platform/network/cf/CookieJarCFNet.cpp (221057 => 221058)


--- trunk/Source/WebCore/platform/network/cf/CookieJarCFNet.cpp	2017-08-23 00:00:06 UTC (rev 221057)
+++ trunk/Source/WebCore/platform/network/cf/CookieJarCFNet.cpp	2017-08-23 00:06:50 UTC (rev 221058)
@@ -29,6 +29,7 @@
 #if USE(CFURLCONNECTION)
 
 #include "Cookie.h"
+#include "CookiesStrategy.h"
 #include "NetworkStorageSession.h"
 #include "NotImplemented.h"
 #include "URL.h"
@@ -36,7 +37,7 @@
 #include <CoreFoundation/CoreFoundation.h>
 #include <pal/spi/cf/CFNetworkSPI.h>
 #include <wtf/SoftLinking.h>
-#include <wtf/TypeCastsCF.h>
+#include <wtf/cf/TypeCastsCF.h>
 #include <wtf/text/WTFString.h>
 
 #if PLATFORM(WIN)
@@ -58,7 +59,7 @@
 static inline CFTypeID typeID() { return ClassName##GetTypeID(); } \
 };
 
-DECLARE_CF_TYPE_TRAIT(CFHTTPCookieRef);
+DECLARE_CF_TYPE_TRAIT(CFHTTPCookie);
 
 #undef DECLARE_CF_TYPE_TRAIT
 } // namespace WTF
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to