Chromium Code Reviews| 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 57% |
| rename from third_party/WebKit/Source/modules/webauth/ScopedCredentialDescriptor.idl |
| rename to third_party/WebKit/Source/modules/webauth/PublicKeyCredentialDescriptor.idl |
| index ccbd1544961ca719d70c2b58a7bfe8e29b08964b..041e4ee321eaa7d61778cb945e68529a90047484 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-transport |
|
Mike West
2017/06/30 08:06:36
https://w3c.github.io/webauthn/#enumdef-authentica
kpaulhamus
2017/06/30 10:59:40
Done.
|
| 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; |
| }; |