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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html

Issue 2867643004: Remove {LocallyStored,SiteBound}CredentialData (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/credentialmanager/FederatedCredential.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html b/third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
index bc779d069e9002807c98e48d31e67ad9860cdeab..5ccc0c987a2c29a4c0e3e3f7967b44d202277e2b 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
@@ -14,26 +14,25 @@
readonly attribute DOMString type;
};
- dictionary SiteBoundCredentialData : CredentialData {
- USVString name;
- USVString iconURL;
- };
-
[NoInterfaceObject, SecureContext]
interface CredentialUserData {
readonly attribute USVString name;
readonly attribute USVString iconURL;
};
- dictionary PasswordCredentialData : SiteBoundCredentialData {
- USVString password;
+ dictionary PasswordCredentialData : CredentialData {
+ USVString name;
+ USVString iconURL;
+ required USVString password;
};
typedef (FormData or URLSearchParams) CredentialBodyType;
- dictionary FederatedCredentialData : SiteBoundCredentialData {
- USVString provider;
+ dictionary FederatedCredentialInit : CredentialData {
+ USVString name;
+ USVString iconURL;
+ required USVString provider;
DOMString protocol;
};
@@ -69,7 +68,7 @@
};
PasswordCredential implements CredentialUserData;
- [Constructor(FederatedCredentialData data),
+ [Constructor(FederatedCredentialInit data),
Exposed=Window,
SecureContext]
interface FederatedCredential : Credential {
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/credentialmanager/FederatedCredential.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698