Bug 1628692 - Prepare dom/webauthn for making FallibleTArray uncopyable. r=jcj

Differential Revision: https://phabricator.services.mozilla.com/D72622
This commit is contained in:
Simon Giesecke 2020-04-29 08:49:18 +00:00
Родитель 62219e33b9
Коммит 6ccae551a7
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -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;