// Copyright 2013 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_PLATFORM_MEDIASTREAM_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_MEDIASTREAM_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_ #include "build/build_config.h" #include "media/base/audio_processing.h" #include "third_party/blink/renderer/platform/platform_export.h" #include "third_party/webrtc/modules/audio_processing/include/audio_processing.h" namespace blink { // Simple struct with audio-processing properties. struct PLATFORM_EXPORT AudioProcessingProperties { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_MEDIASTREAM_MEDIA_STREAM_AUDIO_PROCESSOR_OPTIONS_H_