diff options
author | Matthew Olsson <matthewcolsson@gmail.com> | 2023-04-11 16:33:32 -0700 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-04-12 01:47:48 +0200 |
commit | 819b6332d13b38521f21fcdf848fb794027ad59d (patch) | |
tree | 1fa946d4d8aa04015288afccf2b456f586cd38a4 /Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp | |
parent | c7aa4fa166163ac877daeefe46b85a09d8b77454 (diff) | |
download | serenity-819b6332d13b38521f21fcdf848fb794027ad59d.zip |
LibWeb: Add ReadableStreamByteController interface
Diffstat (limited to 'Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp b/Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp index a73ff2a125..1ab501dd00 100644 --- a/Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp +++ b/Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp @@ -4,6 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ +#include <LibWeb/Streams/ReadableByteStreamController.h> #include <LibWeb/Streams/ReadableStreamBYOBRequest.h> namespace Web::Streams { |