mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 02:10:26 +00:00
...instead of GC::Root. The roots were causing reference cycles somewhere, and there was no need for them to be roots.
32 lines
716 B
C++
32 lines
716 B
C++
/*
|
|
* Copyright (c) 2023, Matthew Olsson <mattco@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Forward.h>
|
|
#include <LibJS/Forward.h>
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
#include <LibWeb/Export.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/WebIDL/Promise.h>
|
|
|
|
namespace Web::Streams {
|
|
|
|
enum class ReadableStreamType {
|
|
Bytes
|
|
};
|
|
|
|
struct WEB_API UnderlyingSource {
|
|
GC::Ptr<WebIDL::CallbackType> start;
|
|
GC::Ptr<WebIDL::CallbackType> pull;
|
|
GC::Ptr<WebIDL::CallbackType> cancel;
|
|
Optional<ReadableStreamType> type;
|
|
Optional<u64> auto_allocate_chunk_size;
|
|
|
|
static JS::ThrowCompletionOr<UnderlyingSource> from_value(JS::VM&, JS::Value);
|
|
};
|
|
|
|
}
|