// 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_PUBLIC_PLATFORM_WEB_AUDIO_SINK_DESCRIPTOR_H_ #define THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_AUDIO_SINK_DESCRIPTOR_H_ #include "base/check_op.h" #include "base/notreached.h" #include "third_party/blink/public/common/tokens/tokens.h" #include "third_party/blink/public/platform/web_string.h" namespace blink { // This descriptor object must be created after proper validation of |sink_id| // in AudioContext. This object is created by AudioContext in blink, and // consumed by RendererWebAudioDeviceImpl in media. Note that this class does // NOT do the vailidation of an identifier. class WebAudioSinkDescriptor { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_AUDIO_SINK_DESCRIPTOR_H_