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

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

Issue 2844453002: Update CM API IDL to use SecureContext (Closed)
Patch Set: Rebase 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/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 fa544258eabb536415c2d8a811c1574b4b2912e7..bc779d069e9002807c98e48d31e67ad9860cdeab 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
@@ -8,6 +8,7 @@
USVString id;
};
+ [Exposed=Window, SecureContext]
interface Credential {
readonly attribute USVString id;
readonly attribute DOMString type;
@@ -18,10 +19,8 @@
USVString iconURL;
};
- [
- NoInterfaceObject,
- SecureContext
- ] interface CredentialUserData {
+ [NoInterfaceObject, SecureContext]
+ interface CredentialUserData {
readonly attribute USVString name;
readonly attribute USVString iconURL;
};
@@ -60,7 +59,8 @@
[Constructor(PasswordCredentialData data),
Constructor(HTMLFormElement form),
- Exposed=Window]
+ Exposed=Window,
+ SecureContext]
interface PasswordCredential : Credential {
attribute USVString idName;
attribute USVString passwordName;
@@ -69,7 +69,9 @@
};
PasswordCredential implements CredentialUserData;
- [Constructor(FederatedCredentialData data), Exposed=Window]
+ [Constructor(FederatedCredentialData data),
+ Exposed=Window,
+ SecureContext]
interface FederatedCredential : Credential {
readonly attribute USVString provider;
readonly attribute DOMString? protocol;

Powered by Google App Engine
This is Rietveld 408576698