Title: [264689] trunk/Source/WebCore
Revision
264689
Author
achristen...@apple.com
Date
2020-07-21 19:09:48 -0700 (Tue, 21 Jul 2020)

Log Message

Fix Windows build.
https://bugs.webkit.org/show_bug.cgi?id=214623

* platform/network/curl/CertificateInfo.h:
* platform/network/curl/CertificateInfoCurl.cpp:
(WebCore::CertificateInfo::summary const):
(WebCore::CertificateInfo::summaryInfo const): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (264688 => 264689)


--- trunk/Source/WebCore/ChangeLog	2020-07-22 01:40:59 UTC (rev 264688)
+++ trunk/Source/WebCore/ChangeLog	2020-07-22 02:09:48 UTC (rev 264689)
@@ -1,5 +1,15 @@
 2020-07-21  Alex Christensen  <achristen...@webkit.org>
 
+        Fix Windows build.
+        https://bugs.webkit.org/show_bug.cgi?id=214623
+
+        * platform/network/curl/CertificateInfo.h:
+        * platform/network/curl/CertificateInfoCurl.cpp:
+        (WebCore::CertificateInfo::summary const):
+        (WebCore::CertificateInfo::summaryInfo const): Deleted.
+
+2020-07-21  Alex Christensen  <achristen...@webkit.org>
+
         Remove unneeded CertificateInfoBase
         https://bugs.webkit.org/show_bug.cgi?id=214623
 

Modified: trunk/Source/WebCore/platform/network/curl/CertificateInfo.h (264688 => 264689)


--- trunk/Source/WebCore/platform/network/curl/CertificateInfo.h	2020-07-22 01:40:59 UTC (rev 264688)
+++ trunk/Source/WebCore/platform/network/curl/CertificateInfo.h	2020-07-22 02:09:48 UTC (rev 264689)
@@ -50,7 +50,7 @@
 
     bool containsNonRootSHA1SignedCertificate() const { notImplemented(); return false; }
 
-    Optional<CertificateSummary> summaryInfo() const;
+    Optional<CertificateSummary> summary() const;
 
     bool isEmpty() const { return m_certificateChain.isEmpty(); }
 

Modified: trunk/Source/WebCore/platform/network/curl/CertificateInfoCurl.cpp (264688 => 264689)


--- trunk/Source/WebCore/platform/network/curl/CertificateInfoCurl.cpp	2020-07-22 01:40:59 UTC (rev 264688)
+++ trunk/Source/WebCore/platform/network/curl/CertificateInfoCurl.cpp	2020-07-22 02:09:48 UTC (rev 264689)
@@ -57,7 +57,7 @@
     return certificate;
 }
 
-Optional<CertificateSummary> CertificateInfo::summaryInfo() const
+Optional<CertificateSummary> CertificateInfo::summary() const
 {
     if (!m_certificateChain.size())
         return WTF::nullopt;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to