Title: [275394] trunk/Source/WebCore
- Revision
- 275394
- Author
- [email protected]
- Date
- 2021-04-01 17:19:11 -0700 (Thu, 01 Apr 2021)
Log Message
Add more deprecation macros.
I missed one in r275298
* platform/network/cocoa/CertificateInfoCocoa.mm:
(WebCore::CertificateInfo::dump const):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (275393 => 275394)
--- trunk/Source/WebCore/ChangeLog 2021-04-01 23:32:22 UTC (rev 275393)
+++ trunk/Source/WebCore/ChangeLog 2021-04-02 00:19:11 UTC (rev 275394)
@@ -1,3 +1,12 @@
+2021-04-01 Alex Christensen <[email protected]>
+
+ Add more deprecation macros.
+
+ I missed one in r275298
+
+ * platform/network/cocoa/CertificateInfoCocoa.mm:
+ (WebCore::CertificateInfo::dump const):
+
2021-04-01 Commit Queue <[email protected]>
Unreviewed, reverting r274381.
Modified: trunk/Source/WebCore/platform/network/cocoa/CertificateInfoCocoa.mm (275393 => 275394)
--- trunk/Source/WebCore/platform/network/cocoa/CertificateInfoCocoa.mm 2021-04-01 23:32:22 UTC (rev 275393)
+++ trunk/Source/WebCore/platform/network/cocoa/CertificateInfoCocoa.mm 2021-04-02 00:19:11 UTC (rev 275394)
@@ -38,7 +38,10 @@
NSLog(@"CertificateInfo SecTrust\n");
NSLog(@" Entries: %ld\n", entries);
for (CFIndex i = 0; i < entries; ++i) {
+ // FIXME: Adopt replacement where available.
+ ALLOW_DEPRECATED_DECLARATIONS_BEGIN
RetainPtr<CFStringRef> summary = adoptCF(SecCertificateCopySubjectSummary(SecTrustGetCertificateAtIndex(trust(), i)));
+ ALLOW_DEPRECATED_DECLARATIONS_END
NSLog(@" %@", (__bridge NSString *)summary.get());
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes