#ifndef MEDIA_MOJO_MOJOM_AUDIO_DECODER_MOJOM_H_
#define MEDIA_MOJO_MOJOM_AUDIO_DECODER_MOJOM_H_
#include <stdint.h>
#include <limits>
#include <optional>
#include <type_traits>
#include <utility>
#include "base/types/cxx23_to_underlying.h"
#include "mojo/public/cpp/bindings/clone_traits.h"
#include "mojo/public/cpp/bindings/equals_traits.h"
#include "mojo/public/cpp/bindings/lib/serialization.h"
#include "mojo/public/cpp/bindings/struct_ptr.h"
#include "mojo/public/cpp/bindings/struct_traits.h"
#include "mojo/public/cpp/bindings/union_traits.h"
#include "third_party/perfetto/include/perfetto/tracing/traced_value_forward.h"
#include "media/mojo/mojom/audio_decoder.mojom-features.h"
#include "media/mojo/mojom/audio_decoder.mojom-shared.h"
#include "media/mojo/mojom/audio_decoder.mojom-forward.h"
#include "media/mojo/mojom/media_log.mojom-forward.h"
#include "media/mojo/mojom/media_types.mojom.h"
#include "mojo/public/mojom/base/unguessable_token.mojom.h"
#include <string>
#include <vector>
#include "mojo/public/cpp/bindings/lib/control_message_handler.h"
#include "mojo/public/cpp/bindings/lib/message_size_estimator.h"
#include "mojo/public/cpp/bindings/raw_ptr_impl_ref_traits.h"
#include "mojo/public/cpp/bindings/lib/native_enum_serialization.h"
#include "mojo/public/cpp/bindings/lib/native_struct_serialization.h"
#include "media/mojo/mojom/supported_audio_decoder_config_mojom_traits.h"
namespace media::mojom {
class AudioDecoderProxy;
template <typename ImplRefTraits>
class AudioDecoderStub;
class AudioDecoderRequestValidator;
class AudioDecoderResponseValidator;
class AudioDecoder
: public AudioDecoderInterfaceBase { … };
class AudioDecoderClientProxy;
template <typename ImplRefTraits>
class AudioDecoderClientStub;
class AudioDecoderClientRequestValidator;
class AudioDecoderClient
: public AudioDecoderClientInterfaceBase { … };
class AudioDecoderProxy
: public AudioDecoder { … };
class AudioDecoderClientProxy
: public AudioDecoderClient { … };
class AudioDecoderStubDispatch { … };
template <typename ImplRefTraits =
mojo::RawPtrImplRefTraits<AudioDecoder>>
class AudioDecoderStub
: public mojo::MessageReceiverWithResponderStatus {
public:
using ImplPointerType = typename ImplRefTraits::PointerType;
AudioDecoderStub() = default;
~AudioDecoderStub() override = default;
void set_sink(ImplPointerType sink) { … }
ImplPointerType& sink() { … }
bool Accept(mojo::Message* message) override { … }
bool AcceptWithResponder(
mojo::Message* message,
std::unique_ptr<mojo::MessageReceiverWithStatus> responder) override { … }
private:
ImplPointerType sink_;
};
class AudioDecoderClientStubDispatch { … };
template <typename ImplRefTraits =
mojo::RawPtrImplRefTraits<AudioDecoderClient>>
class AudioDecoderClientStub
: public mojo::MessageReceiverWithResponderStatus {
public:
using ImplPointerType = typename ImplRefTraits::PointerType;
AudioDecoderClientStub() = default;
~AudioDecoderClientStub() override = default;
void set_sink(ImplPointerType sink) { … }
ImplPointerType& sink() { … }
bool Accept(mojo::Message* message) override { … }
bool AcceptWithResponder(
mojo::Message* message,
std::unique_ptr<mojo::MessageReceiverWithStatus> responder) override { … }
private:
ImplPointerType sink_;
};
class AudioDecoderRequestValidator : public mojo::MessageReceiver { … };
class AudioDecoderClientRequestValidator : public mojo::MessageReceiver { … };
class AudioDecoderResponseValidator : public mojo::MessageReceiver { … };
class SupportedAudioDecoderConfig { … };
template <typename T, SupportedAudioDecoderConfig::EnableIfSame<T>* = nullptr>
bool operator<(const T& lhs, const T& rhs);
template <typename T, SupportedAudioDecoderConfig::EnableIfSame<T>* = nullptr>
bool operator<=(const T& lhs, const T& rhs) { … }
template <typename T, SupportedAudioDecoderConfig::EnableIfSame<T>* = nullptr>
bool operator>(const T& lhs, const T& rhs) { … }
template <typename T, SupportedAudioDecoderConfig::EnableIfSame<T>* = nullptr>
bool operator>=(const T& lhs, const T& rhs) { … }
template <typename StructPtrType>
SupportedAudioDecoderConfigPtr SupportedAudioDecoderConfig::Clone() const { … }
template <typename T, SupportedAudioDecoderConfig::EnableIfSame<T>*>
bool SupportedAudioDecoderConfig::Equals(const T& other_struct) const { … }
template <typename T, SupportedAudioDecoderConfig::EnableIfSame<T>*>
bool operator<(const T& lhs, const T& rhs) { … }
}
namespace mojo {
template <>
struct StructTraits<::media::mojom::SupportedAudioDecoderConfig::DataView,
::media::mojom::SupportedAudioDecoderConfigPtr> { … };
}
#endif