1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:28:11 +00:00

LibWeb: Make factory method of Crypto::SubtleCrypto fallible

This commit is contained in:
Kenneth Myhra 2023-02-12 21:25:57 +01:00 committed by Linus Groh
parent 58af8e2021
commit 52e9839d8b
3 changed files with 8 additions and 5 deletions

View file

@ -8,6 +8,7 @@
#include <AK/Random.h>
#include <AK/StringBuilder.h>
#include <LibJS/Runtime/TypedArray.h>
#include <LibWeb/Bindings/ExceptionOrUtils.h>
#include <LibWeb/Bindings/Intrinsics.h>
#include <LibWeb/Crypto/Crypto.h>
#include <LibWeb/Crypto/SubtleCrypto.h>
@ -30,7 +31,9 @@ JS::ThrowCompletionOr<void> Crypto::initialize(JS::Realm& realm)
{
MUST_OR_THROW_OOM(Base::initialize(realm));
set_prototype(&Bindings::ensure_web_prototype<Bindings::CryptoPrototype>(realm, "Crypto"));
m_subtle = SubtleCrypto::create(realm);
m_subtle = TRY(Bindings::throw_dom_exception_if_needed(realm.vm(), [&]() {
return SubtleCrypto::create(realm);
}));
return {};
}