LibWeb: Refactor {Dec,C}ompressionStream to handle split chunks

This commit is contained in:
devgianlu 2025-03-01 17:57:52 +01:00 committed by Jelle Raaijmakers
commit e02521911a
Notes: github-actions[bot] 2025-03-19 12:48:02 +00:00
4 changed files with 90 additions and 83 deletions

View file

@ -44,8 +44,6 @@ private:
WebIDL::ExceptionOr<void> decompress_and_enqueue_chunk(JS::Value);
WebIDL::ExceptionOr<void> decompress_flush_and_enqueue();
ErrorOr<ByteBuffer> decompress(ReadonlyBytes);
Decompressor m_decompressor;
NonnullOwnPtr<AllocatingMemoryStream> m_input_stream;
};