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

@ -73,7 +73,7 @@ public:
virtual ~Request() override;
// ^BodyMixin
virtual ErrorOr<Optional<MimeSniff::MimeType>> mime_type_impl() const override;
virtual Optional<MimeSniff::MimeType> mime_type_impl() const override;
virtual JS::GCPtr<Infrastructure::Body> body_impl() override;
virtual JS::GCPtr<Infrastructure::Body const> body_impl() const override;
virtual Bindings::PlatformObject& as_platform_object() override { return *this; }