chromium/third_party/blink/renderer/modules/webaudio/constant_source_node.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/modules/webaudio/constant_source_node.h"

#include "third_party/blink/renderer/bindings/modules/v8/v8_constant_source_options.h"
#include "third_party/blink/renderer/modules/webaudio/audio_graph_tracer.h"
#include "third_party/blink/renderer/modules/webaudio/base_audio_context.h"
#include "third_party/blink/renderer/modules/webaudio/constant_source_handler.h"

namespace blink {

namespace {

constexpr double kDefaultOffsetValue =;

}  // namespace

ConstantSourceNode::ConstantSourceNode(BaseAudioContext& context)
    :{}

ConstantSourceNode* ConstantSourceNode::Create(
    BaseAudioContext& context,
    ExceptionState& exception_state) {}

ConstantSourceNode* ConstantSourceNode::Create(
    BaseAudioContext* context,
    const ConstantSourceOptions* options,
    ExceptionState& exception_state) {}

void ConstantSourceNode::Trace(Visitor* visitor) const {}

ConstantSourceHandler& ConstantSourceNode::GetConstantSourceHandler() const {}

AudioParam* ConstantSourceNode::offset() {}

void ConstantSourceNode::ReportDidCreate() {}

void ConstantSourceNode::ReportWillBeDestroyed() {}

}  // namespace blink