1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:47:35 +00:00

LibWeb: Mostly implement ReadableByteStreamController.[[PullSteps]]

This commit is contained in:
Matthew Olsson 2023-04-08 11:46:11 -07:00 committed by Linus Groh
parent c97f6b7701
commit 51abecc8bc
4 changed files with 116 additions and 0 deletions

View file

@ -55,7 +55,9 @@ WebIDL::ExceptionOr<void> set_up_readable_stream_default_controller_from_underly
void readable_byte_stream_controller_clear_algorithms(ReadableByteStreamController&);
void readable_byte_stream_controller_clear_pending_pull_intos(ReadableByteStreamController&);
WebIDL::ExceptionOr<void> readable_byte_stream_controller_fill_read_request_from_queue(ReadableByteStreamController&, NonnullRefPtr<ReadRequest>);
Optional<double> readable_byte_stream_controller_get_desired_size(ReadableByteStreamController const&);
void readable_byte_stream_controller_handle_queue_drain(ReadableByteStreamController&);
void readable_byte_stream_controller_invalidate_byob_request(ReadableByteStreamController&);
WebIDL::ExceptionOr<JS::NonnullGCPtr<WritableStreamDefaultWriter>> acquire_writable_stream_default_writer(WritableStream&);