// 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. #ifndef MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_ #define MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_ #include "ipc/ipc_message.h" #include "ipc/ipc_param_traits.h" #include "media/base/ipc/media_param_traits_macros.h" namespace media { class AudioParameters; } namespace IPC { template <> struct ParamTraits<media::AudioParameters> { … }; template <> struct ParamTraits<media::AudioParameters::HardwareCapabilities> { … }; } // namespace IPC #endif // MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_