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:
parent
e54f272024
commit
99bf986889
3 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue