2009-08-18 23:05:15 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set sw=4 ts=8 et tw=80 :
|
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-07-01 00:39:22 +04:00
|
|
|
|
2010-05-14 03:44:53 +04:00
|
|
|
#include "mozilla/ipc/IOThreadChild.h"
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
#include "ContentProcess.h"
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2010-05-14 03:44:53 +04:00
|
|
|
using mozilla::ipc::IOThreadChild;
|
2009-07-01 00:39:22 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2009-08-12 20:18:08 +04:00
|
|
|
namespace dom {
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2012-12-18 20:24:42 +04:00
|
|
|
void
|
|
|
|
ContentProcess::SetAppDir(const nsACString& aPath)
|
|
|
|
{
|
|
|
|
mXREEmbed.SetAppDir(aPath);
|
|
|
|
}
|
|
|
|
|
2010-05-14 03:44:53 +04:00
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
ContentProcess::Init()
|
2009-07-01 00:39:22 +04:00
|
|
|
{
|
2010-07-19 22:33:33 +04:00
|
|
|
mContent.Init(IOThreadChild::message_loop(),
|
2015-04-01 11:40:35 +03:00
|
|
|
ParentPid(),
|
2010-05-14 03:44:53 +04:00
|
|
|
IOThreadChild::channel());
|
2010-05-26 04:13:47 +04:00
|
|
|
mXREEmbed.Start();
|
2010-09-24 05:39:32 +04:00
|
|
|
mContent.InitXPCOM();
|
2010-05-26 04:13:47 +04:00
|
|
|
|
2010-05-14 03:44:53 +04:00
|
|
|
return true;
|
2009-07-01 00:39:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-07-19 22:33:33 +04:00
|
|
|
ContentProcess::CleanUp()
|
2009-07-01 00:39:22 +04:00
|
|
|
{
|
2014-09-10 15:36:17 +04:00
|
|
|
#if defined(XP_WIN) && defined(MOZ_CONTENT_SANDBOX)
|
|
|
|
mContent.CleanUpSandboxEnvironment();
|
|
|
|
#endif
|
2010-02-01 06:19:21 +03:00
|
|
|
mXREEmbed.Stop();
|
2009-07-01 00:39:22 +04:00
|
|
|
}
|
|
|
|
|
2013-06-03 14:14:40 +04:00
|
|
|
} // namespace dom
|
2009-07-01 00:39:22 +04:00
|
|
|
} // namespace mozilla
|