1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +00:00

LibWeb: Mostly implement ReadableByteStreamController.[[ReleaseSteps]]

This commit is contained in:
Matthew Olsson 2023-04-08 11:49:58 -07:00 committed by Linus Groh
parent 51abecc8bc
commit bd7809cc18
2 changed files with 22 additions and 0 deletions

View file

@ -118,6 +118,7 @@ public:
WebIDL::ExceptionOr<JS::GCPtr<WebIDL::Promise>> cancel_steps(JS::Value reason);
WebIDL::ExceptionOr<void> pull_steps(NonnullRefPtr<ReadRequest>);
WebIDL::ExceptionOr<void> release_steps();
private:
explicit ReadableByteStreamController(JS::Realm&);