зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1628692 - Prepare dom/webauthn for making FallibleTArray uncopyable. r=jcj
Differential Revision: https://phabricator.services.mozilla.com/D72622
This commit is contained in:
Родитель
62219e33b9
Коммит
6ccae551a7
|
@ -71,6 +71,15 @@ class AndroidWebAuthnResult {
|
|||
}
|
||||
}
|
||||
|
||||
AndroidWebAuthnResult(const AndroidWebAuthnResult& aOther)
|
||||
: mAttObj(aOther.mAttObj.InfallibleClone()),
|
||||
mKeyHandle(aOther.mKeyHandle.InfallibleClone()),
|
||||
mClientDataJSON(aOther.mClientDataJSON),
|
||||
mAuthData(aOther.mAuthData.InfallibleClone()),
|
||||
mSignature(aOther.mSignature.InfallibleClone()),
|
||||
mUserHandle(aOther.mUserHandle.InfallibleClone()),
|
||||
mErrorCode(aOther.mErrorCode) {}
|
||||
|
||||
// Attestation-only
|
||||
CryptoBuffer mAttObj;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче