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

Side by Side Diff: third_party/WebKit/Source/modules/webauth/AuthenticatorSelectionCriteria.idl

Issue 2966523002: Blink-layer update to match WebAuthN spec (Closed)
Patch Set: Created 3 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // https://w3c.github.io/webauthn/#aaguid
6
7 typedef BufferSource AAGUID;
8
9 // https://w3c.github.io/webauthn/#typedefdef-authenticatorselectionlistn
10
11 typedef sequence<AAGUID> AuthenticatorSelectionList;
Mike West 2017/06/30 08:06:36 Are we planning on implementing this extension? Ca
kpaulhamus 2017/06/30 10:59:40 Sure! Happy to drop.
12
13 // https://w3c.github.io/webauthn/#enumdef-attachment
14
15 enum Attachment {
Mike West 2017/06/30 08:06:36 Should this be `AuthenticatorAttachment` (https://
kpaulhamus 2017/06/30 10:59:39 Done.
16 "platform",
17 "cross-platform"
18 };
19
20 // https://w3c.github.io/webauthn/#dictdef-authenticatorselectioncriteria
21
22 dictionary AuthenticatorSelectionCriteria {
23 Attachment attachment;
Mike West 2017/06/30 08:06:36 Ditto.
kpaulhamus 2017/06/30 10:59:40 Done.
24 boolean requireResidentKey = false;
25 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698