2010-05-11 08:18:00 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=8 et :
|
|
|
|
*/
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2009-10-06 22:02:26 +04:00
|
|
|
|
2010-05-11 08:18:00 +04:00
|
|
|
#include "nsDebug.h"
|
2009-10-06 22:02:26 +04:00
|
|
|
|
2010-05-11 08:18:00 +04:00
|
|
|
#include "mozilla/ipc/IOThreadChild.h"
|
|
|
|
#include "mozilla/ipc/ProcessChild.h"
|
2009-10-06 22:02:26 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2010-05-11 08:18:00 +04:00
|
|
|
namespace ipc {
|
2009-10-06 22:02:26 +04:00
|
|
|
|
2010-05-11 08:18:00 +04:00
|
|
|
ProcessChild* ProcessChild::gProcessChild;
|
|
|
|
|
2015-04-01 11:40:35 +03:00
|
|
|
ProcessChild::ProcessChild(ProcessId aParentPid)
|
2010-05-11 08:18:00 +04:00
|
|
|
: ChildProcess(new IOThreadChild())
|
|
|
|
, mUILoop(MessageLoop::current())
|
2015-04-01 11:40:35 +03:00
|
|
|
, mParentPid(aParentPid)
|
2009-10-06 22:02:26 +04:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(mUILoop, "UILoop should be created by now");
|
|
|
|
MOZ_ASSERT(!gProcessChild, "should only be one ProcessChild");
|
2010-05-11 08:18:00 +04:00
|
|
|
gProcessChild = this;
|
|
|
|
}
|
2009-10-06 22:02:26 +04:00
|
|
|
|
2010-05-11 08:18:00 +04:00
|
|
|
ProcessChild::~ProcessChild()
|
|
|
|
{
|
2013-08-23 23:51:58 +04:00
|
|
|
gProcessChild = nullptr;
|
2010-05-11 08:18:00 +04:00
|
|
|
}
|
2009-10-06 22:02:26 +04:00
|
|
|
|
2010-05-11 08:18:00 +04:00
|
|
|
} // namespace ipc
|
2009-10-06 22:02:26 +04:00
|
|
|
} // namespace mozilla
|