1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:27:45 +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

@ -10,13 +10,13 @@
#include <LibWeb/Bindings/Intrinsics.h>
#include <LibWeb/Crypto/SubtleCrypto.h>
#include <LibWeb/WebIDL/AbstractOperations.h>
#include <LibWeb/WebIDL/DOMException.h>
#include <LibWeb/WebIDL/ExceptionOr.h>
namespace Web::Crypto {
JS::NonnullGCPtr<SubtleCrypto> SubtleCrypto::create(JS::Realm& realm)
WebIDL::ExceptionOr<JS::NonnullGCPtr<SubtleCrypto>> SubtleCrypto::create(JS::Realm& realm)
{
return realm.heap().allocate<SubtleCrypto>(realm, realm).release_allocated_value_but_fixme_should_propagate_errors();
return MUST_OR_THROW_OOM(realm.heap().allocate<SubtleCrypto>(realm, realm));
}
SubtleCrypto::SubtleCrypto(JS::Realm& realm)