gecko/ipc/glue/ProcessChild.cpp
Nicholas Nethercote 6ee3666899 Bug 1127201 (attempt 2, part 1) - Replace most NS_ABORT_IF_FALSE calls with MOZ_ASSERT. r=Waldo.
--HG--
extra : rebase_source : 488e401ff87e31a2074c4108c4df0572d9536667
2015-02-09 14:34:50 -08:00

35 lines
908 B
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: sw=2 ts=8 et :
*/
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsDebug.h"
#include "mozilla/ipc/IOThreadChild.h"
#include "mozilla/ipc/ProcessChild.h"
namespace mozilla {
namespace ipc {
ProcessChild* ProcessChild::gProcessChild;
ProcessChild::ProcessChild(ProcessHandle parentHandle)
: ChildProcess(new IOThreadChild())
, mUILoop(MessageLoop::current())
, mParentHandle(parentHandle)
{
MOZ_ASSERT(mUILoop, "UILoop should be created by now");
MOZ_ASSERT(!gProcessChild, "should only be one ProcessChild");
gProcessChild = this;
}
ProcessChild::~ProcessChild()
{
gProcessChild = nullptr;
}
} // namespace ipc
} // namespace mozilla