| Index: third_party/WebKit/Source/modules/credentialmanager/CredentialRequestOptions.idl
|
| diff --git a/third_party/WebKit/Source/modules/credentialmanager/CredentialRequestOptions.idl b/third_party/WebKit/Source/modules/credentialmanager/CredentialRequestOptions.idl
|
| index 0e5902aaa632ccedb4299e0618a037d93f7767fc..1cfacb1edd370ccb7e84b13de0bdeb2fb0543cff 100644
|
| --- a/third_party/WebKit/Source/modules/credentialmanager/CredentialRequestOptions.idl
|
| +++ b/third_party/WebKit/Source/modules/credentialmanager/CredentialRequestOptions.idl
|
| @@ -2,11 +2,18 @@
|
| // 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-credentialrequestoptions
|
| +// https://w3c.github.io/webappsec-credential-management/#dictdef-credentialrequestoptions
|
| +
|
| +enum CredentialMediationRequirement {
|
| + "silent",
|
| + "optional",
|
| + "required"
|
| +};
|
|
|
| dictionary CredentialRequestOptions {
|
| FederatedCredentialRequestOptions federated;
|
|
|
| boolean password = false;
|
| - boolean unmediated = false;
|
| + [DeprecateAs=CredentialManagerCredentialRequestOptionsUnmediated] boolean unmediated = false;
|
| + CredentialMediationRequirement mediation = "optional";
|
| };
|
|
|