summaryrefslogtreecommitdiffstats
path: root/dom/webauthn/nsIWebAuthnArgs.idl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dom/webauthn/nsIWebAuthnArgs.idl10
1 files changed, 5 insertions, 5 deletions
diff --git a/dom/webauthn/nsIWebAuthnArgs.idl b/dom/webauthn/nsIWebAuthnArgs.idl
index 72999092fa..06a6c5ec85 100644
--- a/dom/webauthn/nsIWebAuthnArgs.idl
+++ b/dom/webauthn/nsIWebAuthnArgs.idl
@@ -40,9 +40,9 @@ interface nsIWebAuthnRegisterArgs : nsISupports {
// WebAuthn AuthenticationExtensionsClientInputs. That's not feasible here.
// So we define a getter for each supported extension input and use the
// return code to signal presence.
- [must_use] readonly attribute bool credProps;
- [must_use] readonly attribute bool hmacCreateSecret;
- [must_use] readonly attribute bool minPinLength;
+ [must_use] readonly attribute boolean credProps;
+ [must_use] readonly attribute boolean hmacCreateSecret;
+ [must_use] readonly attribute boolean minPinLength;
// Options.
readonly attribute AString residentKey;
@@ -83,7 +83,7 @@ interface nsIWebAuthnSignArgs : nsISupports {
// WebAuthn AuthenticationExtensionsClientInputs. That's not feasible here.
// So we define a getter for each supported extension input and use the
// return code to signal presence.
- [must_use] readonly attribute bool hmacCreateSecret;
+ [must_use] readonly attribute boolean hmacCreateSecret;
[must_use] readonly attribute AString appId;
// Options
@@ -94,5 +94,5 @@ interface nsIWebAuthnSignArgs : nsISupports {
// cancel transactions.
readonly attribute unsigned long timeoutMS;
- readonly attribute bool conditionallyMediated;
+ readonly attribute boolean conditionallyMediated;
};