Index: modules/credentialmanager/Credential.idl |
diff --git a/modules/credentialmanager/Credential.idl b/modules/credentialmanager/Credential.idl |
index 76eab5bc97435afff0658ffebbdf5b34077c6ec7..960a16b67cd9af48fc42088bd1bbaacf3ebfa6d9 100644 |
--- a/modules/credentialmanager/Credential.idl |
+++ b/modules/credentialmanager/Credential.idl |
@@ -2,11 +2,16 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+// https://w3c.github.io/webappsec/specs/credentialmanagement/#credential |
+ |
[ |
RuntimeEnabled=CredentialManager, |
GarbageCollected |
] interface Credential { |
readonly attribute DOMString id; |
+ readonly attribute DOMString type; |
+ |
+ // TODO(mkwst): These should be on LocallyStoredCredential. |
readonly attribute DOMString name; |
- readonly attribute DOMString avatarURL; |
+ readonly attribute DOMString iconURL; |
}; |