Title: [229708] trunk/Source/WebCore/PAL
Revision
229708
Author
jiewen_...@apple.com
Date
2018-03-19 13:06:21 -0700 (Mon, 19 Mar 2018)

Log Message

Unreviewed, a quick fix for r229699

* pal/spi/cocoa/DeviceIdentitySPI.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/PAL/ChangeLog (229707 => 229708)


--- trunk/Source/WebCore/PAL/ChangeLog	2018-03-19 18:04:39 UTC (rev 229707)
+++ trunk/Source/WebCore/PAL/ChangeLog	2018-03-19 20:06:21 UTC (rev 229708)
@@ -1,3 +1,9 @@
+2018-03-19  Jiewen Tan  <jiewen_...@apple.com>
+
+        Unreviewed, a quick fix for r229699
+
+        * pal/spi/cocoa/DeviceIdentitySPI.h:
+
 2018-03-17  Jiewen Tan  <jiewen_...@apple.com>
 
         [WebAuthN] Implement authenticatorMakeCredential

Modified: trunk/Source/WebCore/PAL/pal/spi/cocoa/DeviceIdentitySPI.h (229707 => 229708)


--- trunk/Source/WebCore/PAL/pal/spi/cocoa/DeviceIdentitySPI.h	2018-03-19 18:04:39 UTC (rev 229707)
+++ trunk/Source/WebCore/PAL/pal/spi/cocoa/DeviceIdentitySPI.h	2018-03-19 20:06:21 UTC (rev 229708)
@@ -27,8 +27,14 @@
 
 #if ENABLE(WEB_AUTHN)
 
-#if USE(APPLE_INTERNAL_SDK) && PLATFORM(IOS) && !PLATFORM(IOS_SIMULATOR)
+#if PLATFORM(IOS) && !PLATFORM(IOS_SIMULATOR)
 
+#if USE(APPLE_INTERNAL_SDK)
+
+#if __IPHONE_OS_VERSION_MAX_ALLOWED < 110300
+extern NSString * _Nonnull const kMAOptionsBAAAccessControls;
+#endif
+
 extern "C" {
 #import <DeviceIdentity/DeviceIdentity.h>
 }
@@ -50,6 +56,8 @@
 extern "C"
 void DeviceIdentityIssueClientCertificateWithCompletion(dispatch_queue_t _Nullable, NSDictionary * _Nullable options, MABAACompletionBlock _Nonnull);
 
-#endif // USE(APPLE_INTERNAL_SDK) && PLATFORM(IOS) && !PLATFORM(IOS_SIMULATOR)
+#endif // USE(APPLE_INTERNAL_SDK)
 
+#endif // PLATFORM(IOS) && !PLATFORM(IOS_SIMULATOR)
+
 #endif // ENABLE(WEB_AUTHN)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to