Changeset 254495 in webkit


Ignore:
Timestamp:
Jan 13, 2020 10:41:57 PM (4 years ago)
Author:
don.olmstead@sony.com
Message:

[WebAuthn] Support CTAP Client Pin
https://bugs.webkit.org/show_bug.cgi?id=191516
<rdar://problem/56558558>

Unreviewed build fix after r254439.

CryptoKeyEC was forward declared into WebCore but the namespace was not used in
continueGetPinTokenAfterRequestPin. Looks like something in the unified sources
was covering this issue.

  • UIProcess/WebAuthentication/fido/CtapAuthenticator.h:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r254494 r254495  
     12020-01-13  Don Olmstead  <don.olmstead@sony.com>
     2
     3        [WebAuthn] Support CTAP Client Pin
     4        https://bugs.webkit.org/show_bug.cgi?id=191516
     5        <rdar://problem/56558558>
     6
     7        Unreviewed build fix after r254439.
     8
     9        CryptoKeyEC was forward declared into WebCore but the namespace was not used in
     10        continueGetPinTokenAfterRequestPin. Looks like something in the unified sources
     11        was covering this issue.
     12
     13        * UIProcess/WebAuthentication/fido/CtapAuthenticator.h:
     14
    1152020-01-13  Ross Kirsling  <ross.kirsling@sony.com>
    216
  • trunk/Source/WebKit/UIProcess/WebAuthentication/fido/CtapAuthenticator.h

    r254439 r254495  
    6464    void continueGetKeyAgreementAfterGetRetries(Vector<uint8_t>&&);
    6565    void continueRequestPinAfterGetKeyAgreement(Vector<uint8_t>&&, uint64_t retries);
    66     void continueGetPinTokenAfterRequestPin(const String& pin, const CryptoKeyEC&);
     66    void continueGetPinTokenAfterRequestPin(const String& pin, const WebCore::CryptoKeyEC&);
    6767    void continueRequestAfterGetPinToken(Vector<uint8_t>&&, const fido::pin::TokenRequest&);
    6868
Note: See TracChangeset for help on using the changeset viewer.