We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62219e3 commit 6ccae55Copy full SHA for 6ccae55
dom/webauthn/AndroidWebAuthnTokenManager.h
@@ -71,6 +71,15 @@ class AndroidWebAuthnResult {
71
}
72
73
74
+ AndroidWebAuthnResult(const AndroidWebAuthnResult& aOther)
75
+ : mAttObj(aOther.mAttObj.InfallibleClone()),
76
+ mKeyHandle(aOther.mKeyHandle.InfallibleClone()),
77
+ mClientDataJSON(aOther.mClientDataJSON),
78
+ mAuthData(aOther.mAuthData.InfallibleClone()),
79
+ mSignature(aOther.mSignature.InfallibleClone()),
80
+ mUserHandle(aOther.mUserHandle.InfallibleClone()),
81
+ mErrorCode(aOther.mErrorCode) {}
82
+
83
// Attestation-only
84
CryptoBuffer mAttObj;
85
0 commit comments