Title: [243736] trunk/Source/WebCore
- Revision
- 243736
- Author
- [email protected]
- Date
- 2019-04-01 21:01:59 -0700 (Mon, 01 Apr 2019)
Log Message
Unreviewed build fix.
* crypto/mac/SerializedCryptoKeyWrapMac.mm:
(WebCore::createAndStoreMasterKey): Add ALLOW_DEPRECATED_DECLARATIONS_BEGIN/END
around SecTrustedApplicationCreateFromPath call.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (243735 => 243736)
--- trunk/Source/WebCore/ChangeLog 2019-04-02 03:16:48 UTC (rev 243735)
+++ trunk/Source/WebCore/ChangeLog 2019-04-02 04:01:59 UTC (rev 243736)
@@ -1,3 +1,11 @@
+2019-04-01 Timothy Hatcher <[email protected]>
+
+ Unreviewed build fix.
+
+ * crypto/mac/SerializedCryptoKeyWrapMac.mm:
+ (WebCore::createAndStoreMasterKey): Add ALLOW_DEPRECATED_DECLARATIONS_BEGIN/END
+ around SecTrustedApplicationCreateFromPath call.
+
2019-04-01 Simon Fraser <[email protected]>
Remove some unused iOS scrolling-related code in Frame
Modified: trunk/Source/WebCore/crypto/mac/SerializedCryptoKeyWrapMac.mm (243735 => 243736)
--- trunk/Source/WebCore/crypto/mac/SerializedCryptoKeyWrapMac.mm 2019-04-02 03:16:48 UTC (rev 243735)
+++ trunk/Source/WebCore/crypto/mac/SerializedCryptoKeyWrapMac.mm 2019-04-02 04:01:59 UTC (rev 243736)
@@ -114,7 +114,9 @@
SecACLRef acl = checked_cf_cast<SecACLRef>(CFArrayGetValueAtIndex(acls.get(), 0));
SecTrustedApplicationRef trustedAppRef;
+ALLOW_DEPRECATED_DECLARATIONS_BEGIN
status = SecTrustedApplicationCreateFromPath(0, &trustedAppRef);
+ALLOW_DEPRECATED_DECLARATIONS_END
if (status) {
WTFLogAlways("Cannot create a trusted application object for storing WebCrypto master key, error %d", (int)status);
return false;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes