Title: [237952] trunk/Source
Revision
237952
Author
[email protected]
Date
2018-11-07 16:36:47 -0800 (Wed, 07 Nov 2018)

Log Message

Unreviewed, fix iOS build with recent SDKs.

Source/WebCore:

* platform/network/cocoa/ResourceResponseCocoa.mm:
(WebCore::ResourceResponse::platformCertificateInfo const):

Source/WebKit:

* UIProcess/ios/fullscreen/WKFullScreenWindowControllerIOS.mm:
(-[WKFullScreenWindowController _EVOrganizationName]):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (237951 => 237952)


--- trunk/Source/WebCore/ChangeLog	2018-11-08 00:32:21 UTC (rev 237951)
+++ trunk/Source/WebCore/ChangeLog	2018-11-08 00:36:47 UTC (rev 237952)
@@ -5,6 +5,13 @@
         * platform/network/cocoa/ResourceResponseCocoa.mm:
         (WebCore::ResourceResponse::platformCertificateInfo const):
 
+2018-11-07  Chris Dumez  <[email protected]>
+
+        Unreviewed, fix iOS build with recent SDKs.
+
+        * platform/network/cocoa/ResourceResponseCocoa.mm:
+        (WebCore::ResourceResponse::platformCertificateInfo const):
+
 2018-11-07  Myles C. Maxfield  <[email protected]>
 
         Dotted underlines that skip descenders are invisible

Modified: trunk/Source/WebCore/platform/network/cocoa/ResourceResponseCocoa.mm (237951 => 237952)


--- trunk/Source/WebCore/platform/network/cocoa/ResourceResponseCocoa.mm	2018-11-08 00:32:21 UTC (rev 237951)
+++ trunk/Source/WebCore/platform/network/cocoa/ResourceResponseCocoa.mm	2018-11-08 00:36:47 UTC (rev 237952)
@@ -98,6 +98,7 @@
         return { };
 
     if (trustResultType == kSecTrustResultInvalid) {
+        // FIXME: This is deprecated <rdar://problem/45894288>.
 #pragma clang diagnostic push
 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
         result = SecTrustEvaluate(trust, &trustResultType);

Modified: trunk/Source/WebKit/ChangeLog (237951 => 237952)


--- trunk/Source/WebKit/ChangeLog	2018-11-08 00:32:21 UTC (rev 237951)
+++ trunk/Source/WebKit/ChangeLog	2018-11-08 00:36:47 UTC (rev 237952)
@@ -1,3 +1,10 @@
+2018-11-07  Chris Dumez  <[email protected]>
+
+        Unreviewed, fix iOS build with recent SDKs.
+
+        * UIProcess/ios/fullscreen/WKFullScreenWindowControllerIOS.mm:
+        (-[WKFullScreenWindowController _EVOrganizationName]):
+
 2018-11-07  John Wilander  <[email protected]>
 
         Resource Load Statistics: Enable cap on partitioned cache max age

Modified: trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenWindowControllerIOS.mm (237951 => 237952)


--- trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenWindowControllerIOS.mm	2018-11-08 00:32:21 UTC (rev 237951)
+++ trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenWindowControllerIOS.mm	2018-11-08 00:36:47 UTC (rev 237952)
@@ -905,7 +905,13 @@
     // and the only way to get the information we need is to call SecTrustEvaluate ourselves.
     if (!infoDictionary) {
         SecTrustResultType result = kSecTrustResultProceed;
+
+        // FIXME: This is deprecated <rdar://problem/45894288>.
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
         OSStatus err = SecTrustEvaluate(trust, &result);
+#pragma clang diagnostic pop
+
         if (err == noErr)
             infoDictionary = [(__bridge NSDictionary *)SecTrustCopyInfo(trust) autorelease];
         if (!infoDictionary)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to