1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

LibWeb: Add ReadableStreamBYOBReader to ReadableStreamReader type

This commit is contained in:
Matthew Olsson 2023-04-09 01:26:48 -07:00 committed by Andreas Kling
parent e8ad571082
commit b57b3c54cc
8 changed files with 59 additions and 53 deletions

View file

@ -45,8 +45,6 @@ public:
SinglyLinkedList<NonnullRefPtr<ReadRequest>>& read_requests() { return m_read_requests; }
virtual bool is_default_reader() const override { return true; }
private:
explicit ReadableStreamDefaultReader(JS::Realm&);