#include "third_party/blink/renderer/modules/webaudio/offline_audio_worklet_thread.h"
#include "third_party/blink/renderer/core/workers/global_scope_creation_params.h"
#include "third_party/blink/renderer/modules/webaudio/audio_worklet_global_scope.h"
#include "third_party/blink/renderer/platform/instrumentation/tracing/trace_event.h"
namespace blink {
namespace {
int ref_count = …;
void EnsureSharedBackingThread(const ThreadCreationParams& params) { … }
}
template class WorkletThreadHolder<OfflineAudioWorkletThread>;
OfflineAudioWorkletThread::OfflineAudioWorkletThread(
WorkerReportingProxy& worker_reporting_proxy)
: … { … }
OfflineAudioWorkletThread::~OfflineAudioWorkletThread() { … }
WorkerBackingThread& OfflineAudioWorkletThread::GetWorkerBackingThread() { … }
void OfflineAudioWorkletThread::ClearSharedBackingThread() { … }
WorkerOrWorkletGlobalScope* OfflineAudioWorkletThread::CreateWorkerGlobalScope(
std::unique_ptr<GlobalScopeCreationParams> creation_params) { … }
}