diff options
author | Matthew Olsson <matthewcolsson@gmail.com> | 2023-04-02 15:15:53 -0700 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-04-06 22:54:58 +0200 |
commit | e93560b769f5749e96ca66977886e2be94554550 (patch) | |
tree | 7a8ed57b5e1c9646692115a229ea4d53f7bb2f47 /Userland/Libraries/LibWeb/Streams/AbstractOperations.h | |
parent | 78feba401d05966e4339169d0afa48d5f44d9829 (diff) | |
download | serenity-e93560b769f5749e96ca66977886e2be94554550.zip |
LibWeb: Add the WritableStream interface
Diffstat (limited to 'Userland/Libraries/LibWeb/Streams/AbstractOperations.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Streams/AbstractOperations.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Streams/AbstractOperations.h b/Userland/Libraries/LibWeb/Streams/AbstractOperations.h index 15a47f6ad4..2ca1356610 100644 --- a/Userland/Libraries/LibWeb/Streams/AbstractOperations.h +++ b/Userland/Libraries/LibWeb/Streams/AbstractOperations.h @@ -50,6 +50,8 @@ bool readable_stream_default_controller_can_close_or_enqueue(ReadableStreamDefau WebIDL::ExceptionOr<void> set_up_readable_stream_default_controller(ReadableStream&, ReadableStreamDefaultController&, StartAlgorithm&&, PullAlgorithm&&, CancelAlgorithm&&, double high_water_mark, SizeAlgorithm&&); WebIDL::ExceptionOr<void> set_up_readable_stream_default_controller_from_underlying_source(ReadableStream&, JS::Value underlying_source_value, UnderlyingSource, double high_water_mark, SizeAlgorithm&&); +bool is_writable_stream_locked(WritableStream const&); + JS::ThrowCompletionOr<JS::Handle<WebIDL::CallbackType>> property_to_callback(JS::VM& vm, JS::Value value, JS::PropertyKey const& property_key); } |