1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00

LibWeb: Set up the DefaultController when constructing a WritableStream

This commit is contained in:
Matthew Olsson 2023-04-09 15:22:01 -07:00 committed by Linus Groh
parent 58f3009faa
commit 0a220a19da
5 changed files with 161 additions and 2 deletions

View file

@ -43,4 +43,9 @@ void WritableStreamDefaultController::error_steps()
reset_queue(*this);
}
WritableStreamDefaultController::WritableStreamDefaultController(JS::Realm& realm)
: Bindings::PlatformObject(realm)
{
}
}