//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PPrefetchRecordParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/PrefetchRecordParent.h"
#include "mozilla/dom/ReferrerInfoUtils.h"
#include "mozilla/ipc/URIUtils.h"
#include "nsIReferrerInfo.h"
#include "mozilla/dom/PWindowGlobalParent.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 PPrefetchRecordParent::Recv__delete__() -> mozilla::ipc::IPCResult
{
return IPC_OK();
}
MOZ_IMPLICIT PPrefetchRecordParent::PPrefetchRecordParent() :
mozilla::ipc::IRefCountedProtocol(kProtocolId, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PPrefetchRecordParent);
}
PPrefetchRecordParent::~PPrefetchRecordParent()
{
MOZ_COUNT_DTOR(PPrefetchRecordParent);
}
auto PPrefetchRecordParent::ActorAlloc() -> void
{
AddRef();
}
auto PPrefetchRecordParent::ActorDealloc() -> void
{
Release();
}
auto PPrefetchRecordParent::Manager() const -> PWindowGlobalParent*
{
return static_cast<PWindowGlobalParent*>(IProtocol::Manager());
}
auto PPrefetchRecordParent::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PPrefetchRecordParent::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PPrefetchRecordParent::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PPrefetchRecordParent::OnMessageReceived(const Message& msg__) -> PPrefetchRecordParent::Result
{
if (!CanSend()) {
if (mozilla::ipc::LoggingEnabledFor("PPrefetchRecord", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PPrefetchRecordParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Ignored message for dead actor",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eSending);
}
return MsgProcessed;
}
switch (msg__.type()) {
case MANAGED_ENDPOINT_BOUND_MESSAGE_TYPE:
{
if (!mAwaitingManagedEndpointBind) {
NS_WARNING("Unexpected managed endpoint lifecycle message after actor bound!");
return MsgNotAllowed;
}
mAwaitingManagedEndpointBind = false;
return MsgProcessed;
}
case MANAGED_ENDPOINT_DROPPED_MESSAGE_TYPE:
{
if (!mAwaitingManagedEndpointBind) {
NS_WARNING("Unexpected managed endpoint lifecycle message after actor bound!");
return MsgNotAllowed;
}
mAwaitingManagedEndpointBind = false;
this->ActorDisconnected(ManagedEndpointDropped);
return MsgProcessed;
}
case PPrefetchRecord::Msg_Cancel__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PPrefetchRecord", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PPrefetchRecordParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PPrefetchRecord::Msg_Cancel", OTHER);
mozilla::ipc::IPCResult __ok = (static_cast<PrefetchRecordParent*>(this))->RecvCancel();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PPrefetchRecord::Msg___delete____ID:
{
if (mozilla::ipc::LoggingEnabledFor("PPrefetchRecord", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PPrefetchRecordParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PPrefetchRecord::Msg___delete__", OTHER);
DoomSubtree();
mozilla::ipc::IPCResult __ok = (static_cast<PrefetchRecordParent*>(this))->Recv__delete__();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
this->ActorDisconnected(Deletion);
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PPrefetchRecordParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PPrefetchRecordParent::Result
{
if (!CanSend()) {
return MsgDropped;
}
return MsgNotKnown;
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PPrefetchRecordParent*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PPrefetchRecord'
(aWriter)->WriteSentinel(771950049);
}
auto ParamTraits<::mozilla::dom::PPrefetchRecordParent*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PPrefetchRecord actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PPrefetchRecord'
if ((!((aReader)->ReadSentinel(771950049)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PPrefetchRecord actor");
return {};
}
if (actor && actor->GetProtocolId() != PPrefetchRecordMsgStart) {
aReader->FatalError("Unexpected actor type (expected PPrefetchRecord)");
return {};
}
return static_cast<::mozilla::dom::PPrefetchRecordParent*>(actor);
}
} // namespace IPC