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

Unified Diff: Source/modules/credentialmanager/CredentialRequestOptions.idl

Issue 1205003002: Credential Management: Implement CredentialRequestOptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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: Source/modules/credentialmanager/CredentialRequestOptions.idl
diff --git a/Source/modules/credentialmanager/LocallyStoredCredentialData.idl b/Source/modules/credentialmanager/CredentialRequestOptions.idl
similarity index 56%
copy from Source/modules/credentialmanager/LocallyStoredCredentialData.idl
copy to Source/modules/credentialmanager/CredentialRequestOptions.idl
index 2d127f986feec5b9b8e11ce560f1009ec7b04447..2a70c7fa06807e6201c16d12299249ce77ee800e 100644
--- a/Source/modules/credentialmanager/LocallyStoredCredentialData.idl
+++ b/Source/modules/credentialmanager/CredentialRequestOptions.idl
@@ -2,9 +2,11 @@
// 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/#dictdef-locallystoredcredentialdata
+// https://w3c.github.io/webappsec/specs/credentialmanagement/#dictdef-credentialrequestoptions
-dictionary LocallyStoredCredentialData : CredentialData {
- DOMString name;
- DOMString iconURL;
+dictionary CredentialRequestOptions {
+ FederatedCredentialRequestOptions federated;
+
+ boolean password = false;
+ boolean suppressUI = false;
};

Powered by Google App Engine
This is Rietveld 408576698