#include "third_party/blink/renderer/modules/webaudio/media_element_audio_source_node.h"
#include <memory>
#include "third_party/blink/public/platform/task_type.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_media_element_audio_source_options.h"
#include "third_party/blink/renderer/core/frame/deprecation/deprecation.h"
#include "third_party/blink/renderer/core/html/media/html_media_element.h"
#include "third_party/blink/renderer/core/inspector/console_message.h"
#include "third_party/blink/renderer/modules/webaudio/audio_context.h"
#include "third_party/blink/renderer/modules/webaudio/audio_graph_tracer.h"
#include "third_party/blink/renderer/modules/webaudio/audio_node_output.h"
#include "third_party/blink/renderer/platform/audio/audio_utilities.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/weborigin/security_origin.h"
#include "third_party/blink/renderer/platform/wtf/cross_thread_functional.h"
namespace blink {
MediaElementAudioSourceNode::MediaElementAudioSourceNode(
AudioContext& context,
HTMLMediaElement& media_element)
: … { … }
MediaElementAudioSourceNode* MediaElementAudioSourceNode::Create(
AudioContext& context,
HTMLMediaElement& media_element,
ExceptionState& exception_state) { … }
MediaElementAudioSourceNode* MediaElementAudioSourceNode::Create(
AudioContext* context,
const MediaElementAudioSourceOptions* options,
ExceptionState& exception_state) { … }
MediaElementAudioSourceHandler&
MediaElementAudioSourceNode::GetMediaElementAudioSourceHandler() const { … }
HTMLMediaElement* MediaElementAudioSourceNode::mediaElement() const { … }
void MediaElementAudioSourceNode::SetFormat(uint32_t number_of_channels,
float sample_rate) { … }
void MediaElementAudioSourceNode::lock() { … }
void MediaElementAudioSourceNode::unlock() { … }
void MediaElementAudioSourceNode::ReportDidCreate() { … }
void MediaElementAudioSourceNode::ReportWillBeDestroyed() { … }
bool MediaElementAudioSourceNode::HasPendingActivity() const { … }
void MediaElementAudioSourceNode::Trace(Visitor* visitor) const { … }
}