1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 10:17:35 +00:00

LibWeb: Add AO transform_stream_default_controller_enqueue()

This commit is contained in:
Kenneth Myhra 2023-07-07 19:30:34 +02:00 committed by Andreas Kling
parent d2236e5ca5
commit e028918a64
2 changed files with 46 additions and 0 deletions

View file

@ -134,6 +134,7 @@ WebIDL::ExceptionOr<void> writable_stream_default_controller_process_write(Writa
WebIDL::ExceptionOr<void> writable_stream_default_controller_write(WritableStreamDefaultController&, JS::Value chunk, JS::Value chunk_size);
void transform_stream_default_controller_clear_algorithms(TransformStreamDefaultController&);
WebIDL::ExceptionOr<void> transform_stream_default_controller_enqueue(TransformStreamDefaultController&, JS::Value chunk);
WebIDL::ExceptionOr<void> transform_stream_default_controller_error(TransformStreamDefaultController&, JS::Value error);
WebIDL::ExceptionOr<void> transform_stream_error(TransformStream&, JS::Value error);
WebIDL::ExceptionOr<void> transform_stream_error_writable_and_unblock_write(TransformStream&, JS::Value error);