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

LibWeb: Use unsigned long long for ReadableStreamBYOBRequest.respond

Now that the IDL generator supports this :^)
This commit is contained in:
Shannon Booth 2023-12-27 21:13:46 +13:00 committed by Andreas Kling
parent e54f272024
commit 99bf986889
3 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ void ReadableStreamBYOBRequest::visit_edges(Cell::Visitor& visitor)
visitor.visit(m_view);
}
WebIDL::ExceptionOr<void> ReadableStreamBYOBRequest::respond(u64 bytes_written)
WebIDL::ExceptionOr<void> ReadableStreamBYOBRequest::respond(WebIDL::UnsignedLongLong bytes_written)
{
// 1. If this.[[controller]] is undefined, throw a TypeError exception.
if (!m_controller)