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

Unified Diff: third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.idl

Issue 2852423002: Expose passwords to JavaScript in Credential Manager API (Closed)
Patch Set: More Interface Listings Created 3 years, 8 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/credentialmanager/PasswordCredential.idl
diff --git a/third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.idl b/third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.idl
index 993920d8a880be288493240522bf4dc9e37d7a7d..782583ad94574bef6df19e92cd727da24193f93a 100644
--- a/third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.idl
+++ b/third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.idl
@@ -13,8 +13,9 @@ typedef (FormData or URLSearchParams) CredentialBodyType;
Exposed=Window,
SecureContext
] interface PasswordCredential : Credential {
- attribute USVString idName;
- attribute USVString passwordName;
- attribute CredentialBodyType? additionalData;
+ [DeprecateAs=CredentialManagerIdName] attribute USVString idName;
+ [DeprecateAs=CredentialManagerPasswordName] attribute USVString passwordName;
+ [DeprecateAs=CredentialManagerAdditionalData] attribute CredentialBodyType? additionalData;
+ attribute DOMString password;
Mike West 2017/05/04 11:13:33 `readonly`
jdoerrie 2017/05/04 14:24:10 See comment above.
};
PasswordCredential implements CredentialUserData;

Powered by Google App Engine
This is Rietveld 408576698