Copy as Markdown
Other Tools
//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PMediaTransportParent.h"
#include "mozilla/dom/MediaTransportParent.h"
#include "mozilla/ipc/PBackgroundParent.h"
#include "ipc/IPCMessageUtils.h"
#include "ipc/IPCMessageUtilsSpecializations.h"
#include "nsIFile.h"
#include "mozilla/ipc/Endpoint.h"
#include "mozilla/ipc/ProtocolMessageUtils.h"
#include "mozilla/ipc/ProtocolUtils.h"
#include "mozilla/ipc/ShmemMessageUtils.h"
#include "mozilla/ipc/TaintingIPCUtils.h"
namespace mozilla {
namespace dom {
auto PMediaTransportParent::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PMediaTransportParent::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PMediaTransportParent::PMediaTransportParent() :
mozilla::ipc::IToplevelProtocol("PMediaTransportParent", kProtocolId, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PMediaTransportParent);
}
PMediaTransportParent::~PMediaTransportParent()
{
MOZ_COUNT_DTOR(PMediaTransportParent);
}
auto PMediaTransportParent::ActorAlloc() -> void
{
MOZ_RELEASE_ASSERT(XRE_IsSocketProcess(), "Invalid process for `PMediaTransportParent'");
AddRef();
}
auto PMediaTransportParent::ActorDealloc() -> void
{
Release();
}
auto PMediaTransportParent::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PMediaTransportParent::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PMediaTransportParent::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PMediaTransportParent::OnMessageReceived(const Message& msg__) -> PMediaTransportParent::Result
{
switch (msg__.type()) {
default:
return MsgNotKnown;
case SHMEM_CREATED_MESSAGE_TYPE:
{
if (!ShmemCreated(msg__)) {
return MsgPayloadError;
}
return MsgProcessed;
}
case SHMEM_DESTROYED_MESSAGE_TYPE:
{
if (!ShmemDestroyed(msg__)) {
return MsgPayloadError;
}
return MsgProcessed;
}
}
}
auto PMediaTransportParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PMediaTransportParent::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PMediaTransportParent*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PMediaTransport'
(aWriter)->WriteSentinel(762709502);
}
auto ParamTraits<::mozilla::dom::PMediaTransportParent*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PMediaTransport actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PMediaTransport'
if ((!((aReader)->ReadSentinel(762709502)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PMediaTransport actor");
return {};
}
if (actor && actor->GetProtocolId() != PMediaTransportMsgStart) {
aReader->FatalError("Unexpected actor type (expected PMediaTransport)");
return {};
}
return static_cast<::mozilla::dom::PMediaTransportParent*>(actor);
}
} // namespace IPC