Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(556)

Unified Diff: third_party/WebKit/Source/modules/webauth/AuthenticatorAssertionResponse.idl

Issue 2966523002: Blink-layer update to match WebAuthN spec (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
};

Powered by Google App Engine
This is Rietveld 408576698