Title: [205084] trunk/Source/WebCore
- Revision
- 205084
- Author
- [email protected]
- Date
- 2016-08-27 14:34:57 -0700 (Sat, 27 Aug 2016)
Log Message
Fix the !PLATFORM(WIN) && USE(CURL) build.
https://bugs.webkit.org/show_bug.cgi?id=161281
Patch by Yoshiaki Jitsukawa <[email protected]> on 2016-08-27
Reviewed by Alex Christensen.
* platform/network/curl/ResourceHandleCurl.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (205083 => 205084)
--- trunk/Source/WebCore/ChangeLog 2016-08-27 20:55:16 UTC (rev 205083)
+++ trunk/Source/WebCore/ChangeLog 2016-08-27 21:34:57 UTC (rev 205084)
@@ -1,3 +1,12 @@
+2016-08-27 Yoshiaki Jitsukawa <[email protected]>
+
+ Fix the !PLATFORM(WIN) && USE(CURL) build.
+ https://bugs.webkit.org/show_bug.cgi?id=161281
+
+ Reviewed by Alex Christensen.
+
+ * platform/network/curl/ResourceHandleCurl.cpp:
+
2016-08-27 Youenn Fablet <[email protected]>
[Fetch API] Opaque responses should not have any body
Modified: trunk/Source/WebCore/platform/network/curl/ResourceHandleCurl.cpp (205083 => 205084)
--- trunk/Source/WebCore/platform/network/curl/ResourceHandleCurl.cpp 2016-08-27 20:55:16 UTC (rev 205083)
+++ trunk/Source/WebCore/platform/network/curl/ResourceHandleCurl.cpp 2016-08-27 21:34:57 UTC (rev 205084)
@@ -115,6 +115,8 @@
ResourceHandleManager::sharedInstance()->cancel(this);
}
+#if PLATFORM(WIN)
+
void ResourceHandle::setHostAllowsAnyHTTPSCertificate(const String& host)
{
allowsAnyHTTPSCertificateHosts(host);
@@ -128,6 +130,8 @@
LOG(Network, "Invalid client certificate file: %s!\n", certificate.latin1().data());
}
+#endif
+
#if PLATFORM(WIN) && USE(CF)
void ResourceHandle::setClientCertificate(const String&, CFDataRef)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes