#ifndef THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_SCRIPT_STREAMER_H_
#define THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_SCRIPT_STREAMER_H_
#include <memory>
#include <tuple>
#include "base/check_op.h"
#include "base/synchronization/waitable_event.h"
#include "base/task/single_thread_task_runner.h"
#include "mojo/public/cpp/system/data_pipe.h"
#include "third_party/blink/public/mojom/script/script_type.mojom-blink-forward.h"
#include "third_party/blink/renderer/bindings/core/v8/script_decoder.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/html/parser/text_resource_decoder.h"
#include "third_party/blink/renderer/core/script/script_scheduling_type.h"
#include "third_party/blink/renderer/platform/bindings/parkable_string.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/heap/member.h"
#include "third_party/blink/renderer/platform/heap/prefinalizer.h"
#include "third_party/blink/renderer/platform/loader/fetch/url_loader/background_response_processor.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/thread_safe_ref_counted.h"
#include "v8/include/v8.h"
namespace mojo {
class SimpleWatcher;
}
namespace blink {
namespace v8_compile_hints {
class CompileHintsForStreaming;
class V8LocalCompileHintsConsumer;
}
class ScriptResource;
class SourceStream;
class ResponseBodyLoaderClient;
class CORE_EXPORT ScriptStreamer : public GarbageCollected<ScriptStreamer> { … };
class CORE_EXPORT ResourceScriptStreamer final : public ScriptStreamer { … };
class CORE_EXPORT BackgroundInlineScriptStreamer final
: public WTF::ThreadSafeRefCounted<BackgroundInlineScriptStreamer> { … };
class CORE_EXPORT InlineScriptStreamer final : public ScriptStreamer { … };
class CORE_EXPORT BackgroundResourceScriptStreamer : public ScriptStreamer { … };
}
#endif