mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-20 16:28:54 +00:00
LibWeb: Implement WritableStream.getWriter()
This commit is contained in:
parent
f358ae1b13
commit
ae2d67c28b
Notes:
sideshowbarker
2024-07-16 21:41:18 +09:00
Author: https://github.com/mattco98
Commit: ae2d67c28b
Pull-request: https://github.com/SerenityOS/serenity/pull/18265
Reviewed-by: https://github.com/linusg ✅
5 changed files with 27 additions and 1 deletions
|
@ -48,6 +48,7 @@ public:
|
|||
|
||||
bool locked() const;
|
||||
WebIDL::ExceptionOr<JS::GCPtr<JS::Object>> close();
|
||||
WebIDL::ExceptionOr<JS::NonnullGCPtr<WritableStreamDefaultWriter>> get_writer();
|
||||
|
||||
bool backpressure() const { return m_backpressure; }
|
||||
void set_backpressure(bool value) { m_backpressure = value; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue