diff --git a/Userland/Libraries/LibWeb/FileAPI/Blob.h b/Userland/Libraries/LibWeb/FileAPI/Blob.h index d4bbdfcabd5..2f4658f4409 100644 --- a/Userland/Libraries/LibWeb/FileAPI/Blob.h +++ b/Userland/Libraries/LibWeb/FileAPI/Blob.h @@ -49,6 +49,8 @@ public: ReadonlyBytes bytes() const { return m_byte_buffer.bytes(); } + WebIDL::ExceptionOr> get_stream(); + protected: Blob(JS::Realm&, ByteBuffer, String type); Blob(JS::Realm&, ByteBuffer); @@ -56,8 +58,6 @@ protected: virtual void initialize(JS::Realm&) override; private: - WebIDL::ExceptionOr> get_stream(); - explicit Blob(JS::Realm&); ByteBuffer m_byte_buffer {};