mozilla::ipc::IProtocol* CrashReporterParent::CloneProtocol(Channel* aChannel, mozilla::ipc::ProtocolCloneContext* aCtx) { #ifdef MOZ_CRASHREPORTER ContentParent* contentParent = aCtx->GetContentParent(); CrashReporter::ThreadId childThreadId = contentParent->Pid(); GeckoProcessType childProcessType = contentParent->Process()->GetProcessType(); nsAutoPtr<PCrashReporterParent> actor( contentParent->AllocPCrashReporterParent(childThreadId, childProcessType) ); if (!actor || !contentParent->RecvPCrashReporterConstructor(actor, childThreadId, childThreadId)) { return nullptr; } return actor.forget(); #else MOZ_CRASH("Not Implemented"); return nullptr; #endif }