LibWeb: Remove OOM propagation from Fetch::Body

This commit is contained in:
Timothy Flynn 2024-04-27 10:15:01 -04:00 committed by Andreas Kling
commit 3e991a55fa
Notes: sideshowbarker 2024-07-17 07:09:53 +09:00
6 changed files with 8 additions and 8 deletions

View file

@ -26,7 +26,7 @@ class BodyMixin {
public:
virtual ~BodyMixin();
virtual ErrorOr<Optional<MimeSniff::MimeType>> mime_type_impl() const = 0;
virtual Optional<MimeSniff::MimeType> mime_type_impl() const = 0;
virtual JS::GCPtr<Infrastructure::Body> body_impl() = 0;
virtual JS::GCPtr<Infrastructure::Body const> body_impl() const = 0;
virtual Bindings::PlatformObject& as_platform_object() = 0;