LibWeb: Make factory method of HTML::TextMetrics fallible

This commit is contained in:
Kenneth Myhra 2023-02-15 19:12:53 +01:00 committed by Linus Groh
commit c5de2c3348
Notes: sideshowbarker 2024-07-17 02:35:27 +09:00
3 changed files with 5 additions and 4 deletions

View file

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