⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243736 in webkit


Ignore:
Timestamp:
Apr 1, 2019, 9:01:59 PM (7 years ago)
Author:
timothy@apple.com
Message:

Unreviewed build fix.

  • crypto/mac/SerializedCryptoKeyWrapMac.mm:

(WebCore::createAndStoreMasterKey): Add ALLOW_DEPRECATED_DECLARATIONS_BEGIN/END
around SecTrustedApplicationCreateFromPath call.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r243735 r243736  
     12019-04-01  Timothy Hatcher  <timothy@apple.com>
     2
     3        Unreviewed build fix.
     4
     5        * crypto/mac/SerializedCryptoKeyWrapMac.mm:
     6        (WebCore::createAndStoreMasterKey): Add ALLOW_DEPRECATED_DECLARATIONS_BEGIN/END
     7        around SecTrustedApplicationCreateFromPath call.
     8
    192019-04-01  Simon Fraser  <simon.fraser@apple.com>
    210
  • trunk/Source/WebCore/crypto/mac/SerializedCryptoKeyWrapMac.mm

    r238754 r243736  
    115115
    116116    SecTrustedApplicationRef trustedAppRef;
     117ALLOW_DEPRECATED_DECLARATIONS_BEGIN
    117118    status = SecTrustedApplicationCreateFromPath(0, &trustedAppRef);
     119ALLOW_DEPRECATED_DECLARATIONS_END
    118120    if (status) {
    119121        WTFLogAlways("Cannot create a trusted application object for storing WebCrypto master key, error %d", (int)status);
Note: See TracChangeset for help on using the changeset viewer.