LibWeb: Implement AO transform_stream_set_up()

This commit is contained in:
Kenneth Myhra 2024-04-28 10:05:12 +02:00 committed by Tim Flynn
commit 5a3e603b3d
Notes: sideshowbarker 2024-07-17 02:28:18 +09:00
2 changed files with 66 additions and 0 deletions

View file

@ -179,6 +179,7 @@ JS::NonnullGCPtr<WebIDL::Promise> transform_stream_default_source_pull_algorithm
void transform_stream_error(TransformStream&, JS::Value error);
void transform_stream_error_writable_and_unblock_write(TransformStream&, JS::Value error);
void transform_stream_set_backpressure(TransformStream&, bool backpressure);
void transform_stream_set_up(TransformStream&, JS::NonnullGCPtr<TransformAlgorithm>, JS::GCPtr<FlushAlgorithm> = {}, JS::GCPtr<CancelAlgorithm> = {});
bool is_non_negative_number(JS::Value);
bool can_transfer_array_buffer(JS::ArrayBuffer const& array_buffer);