 Chromium Code Reviews
 Chromium Code Reviews Issue 2966523002:
  Blink-layer update to match WebAuthN spec  (Closed)
    
  
    Issue 2966523002:
  Blink-layer update to match WebAuthN spec  (Closed) 
  | Index: third_party/WebKit/Source/modules/webauth/AuthenticatorAssertionResponse.idl | 
| diff --git a/third_party/WebKit/Source/modules/webauth/AuthenticationAssertion.idl b/third_party/WebKit/Source/modules/webauth/AuthenticatorAssertionResponse.idl | 
| similarity index 62% | 
| rename from third_party/WebKit/Source/modules/webauth/AuthenticationAssertion.idl | 
| rename to third_party/WebKit/Source/modules/webauth/AuthenticatorAssertionResponse.idl | 
| index 16712494ffd9a9606c9dfc89cce51ac3ec54fc9b..7ebc1c9ccdb16cec214df95f76a0aa1abf6d5afa 100644 | 
| --- a/third_party/WebKit/Source/modules/webauth/AuthenticationAssertion.idl | 
| +++ b/third_party/WebKit/Source/modules/webauth/AuthenticatorAssertionResponse.idl | 
| @@ -2,14 +2,12 @@ | 
| // Use of this source code is governed by a BSD-style license that can be | 
| // found in the LICENSE file. | 
| -// https://w3c.github.io/webauthn/#webauthnassertion | 
| +// https://w3c.github.io/webauthn/#authenticatorassertionresponse | 
| [ | 
| RuntimeEnabled=WebAuth, | 
| SecureContext | 
| -] interface AuthenticationAssertion { | 
| - readonly attribute ScopedCredential credential; | 
| - readonly attribute ArrayBuffer clientData; | 
| +] interface AuthenticatorAssertionResponse : AuthenticatorResponse { | 
| readonly attribute ArrayBuffer authenticatorData; | 
| readonly attribute ArrayBuffer signature; | 
| 
Mike West
2017/06/30 08:06:35
`[SameObject]` for both of these.
 
kpaulhamus
2017/06/30 10:59:39
Done.
 | 
| }; |