diff options
author | Matthew Olsson <matthewcolsson@gmail.com> | 2023-04-09 15:21:58 -0700 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-04-10 00:45:03 +0200 |
commit | 58f3009faaf99cff532b993fe868225e0ab319f4 (patch) | |
tree | 516e0cf02e4113b1fc03d561cf060afdaf3ec5f5 /Userland/Libraries/LibWeb/Streams/AbstractOperations.h | |
parent | 48b67e41f068262fbe387bfbc7f5f52b398c8008 (diff) | |
download | serenity-58f3009faaf99cff532b993fe868225e0ab319f4.zip |
LibWeb: Implement WritableStreamDefaultWriter.write()
Diffstat (limited to 'Userland/Libraries/LibWeb/Streams/AbstractOperations.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Streams/AbstractOperations.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Streams/AbstractOperations.h b/Userland/Libraries/LibWeb/Streams/AbstractOperations.h index c10fdca560..5b4a29dddf 100644 --- a/Userland/Libraries/LibWeb/Streams/AbstractOperations.h +++ b/Userland/Libraries/LibWeb/Streams/AbstractOperations.h @@ -59,6 +59,7 @@ WebIDL::ExceptionOr<void> set_up_writable_stream_default_writer(WritableStreamDe WebIDL::ExceptionOr<JS::NonnullGCPtr<WebIDL::Promise>> writable_stream_abort(WritableStream&, JS::Value reason); WebIDL::ExceptionOr<JS::NonnullGCPtr<WebIDL::Promise>> writable_stream_close(WritableStream&); +WebIDL::ExceptionOr<JS::NonnullGCPtr<WebIDL::Promise>> writable_stream_add_write_request(WritableStream&); bool writable_stream_close_queued_or_in_flight(WritableStream const&); WebIDL::ExceptionOr<void> writable_stream_deal_with_rejection(WritableStream&, JS::Value error); WebIDL::ExceptionOr<void> writable_stream_finish_erroring(WritableStream&); @@ -79,15 +80,19 @@ void writable_stream_default_writer_ensure_closed_promise_rejected(WritableStrea void writable_stream_default_writer_ensure_ready_promise_rejected(WritableStreamDefaultWriter&, JS::Value error); Optional<double> writable_stream_default_writer_get_desired_size(WritableStreamDefaultWriter const&); WebIDL::ExceptionOr<void> writable_stream_default_writer_release(WritableStreamDefaultWriter&); +WebIDL::ExceptionOr<JS::NonnullGCPtr<WebIDL::Promise>> writable_stream_default_writer_write(WritableStreamDefaultWriter&, JS::Value chunk); WebIDL::ExceptionOr<void> writable_stream_default_controller_advance_queue_if_needed(WritableStreamDefaultController&); void writable_stream_default_controller_clear_algorithms(WritableStreamDefaultController&); WebIDL::ExceptionOr<void> writable_stream_default_controller_close(WritableStreamDefaultController&); WebIDL::ExceptionOr<void> writable_stream_default_controller_error(WritableStreamDefaultController&, JS::Value error); +WebIDL::ExceptionOr<void> writable_stream_default_controller_error_if_needed(WritableStreamDefaultController&, JS::Value error); bool writable_stream_default_controller_get_backpressure(WritableStreamDefaultController const&); +WebIDL::ExceptionOr<JS::Value> writable_stream_default_controller_get_chunk_size(WritableStreamDefaultController&, JS::Value chunk); double writable_stream_default_controller_get_desired_size(WritableStreamDefaultController const&); WebIDL::ExceptionOr<void> writable_stream_default_controller_process_close(WritableStreamDefaultController&); WebIDL::ExceptionOr<void> writable_stream_default_controller_process_write(WritableStreamDefaultController&, JS::Value chunk); +WebIDL::ExceptionOr<void> writable_stream_default_controller_write(WritableStreamDefaultController&, JS::Value chunk, JS::Value chunk_size); bool is_non_negative_number(JS::Value); |