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

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

Issue 2966523002: Blink-layer update to match WebAuthN spec (Closed)
Patch Set: Add ContectLifecycleObserver... part2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webauth/PublicKeyCredentialDescriptor.idl
diff --git a/third_party/WebKit/Source/modules/webauth/ScopedCredentialDescriptor.idl b/third_party/WebKit/Source/modules/webauth/PublicKeyCredentialDescriptor.idl
similarity index 56%
rename from third_party/WebKit/Source/modules/webauth/ScopedCredentialDescriptor.idl
rename to third_party/WebKit/Source/modules/webauth/PublicKeyCredentialDescriptor.idl
index ccbd1544961ca719d70c2b58a7bfe8e29b08964b..972e662b24b1ac947ea67537b5f813f32c706556 100644
--- a/third_party/WebKit/Source/modules/webauth/ScopedCredentialDescriptor.idl
+++ b/third_party/WebKit/Source/modules/webauth/PublicKeyCredentialDescriptor.idl
@@ -2,7 +2,7 @@
// 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/#enumdef-externaltransport
+// https://w3c.github.io/webauthn/#enumdef-authenticatortransport
enum Transport {
"usb",
@@ -10,10 +10,10 @@ enum Transport {
"ble"
};
-// https://w3c.github.io/webauthn/#dictdef-scopedcredentialdescriptor
+// https://w3c.github.io/webauthn/#dictdef-publickeycredentialdescriptor
-dictionary ScopedCredentialDescriptor {
- required ScopedCredentialType type;
+dictionary PublicKeyCredentialDescriptor {
+ required PublicKeyCredentialType type;
required BufferSource id;
sequence<Transport> transports;
};

Powered by Google App Engine
This is Rietveld 408576698