// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_WEBAUDIO_AUDIO_DESTINATION_HANDLER_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBAUDIO_AUDIO_DESTINATION_HANDLER_H_ #include <atomic> #include "base/notreached.h" #include "third_party/blink/renderer/modules/webaudio/audio_node.h" namespace blink { // The AudioDestinationHandler (ADH) is a base class for the rendering backend // for AudioDestinatioNode. It contains common information required for the // rendering such as current sample frame, sample rate and maximum channel count // of the context. class AudioDestinationHandler : public AudioHandler { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBAUDIO_AUDIO_DESTINATION_HANDLER_H_