2009-08-18 12:05:15 -07: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 04:12:37 -07: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-06-30 13:39:22 -07:00
|
|
|
|
2010-05-13 16:44:53 -07:00
|
|
|
#include "mozilla/ipc/IOThreadChild.h"
|
2009-06-30 13:39:22 -07:00
|
|
|
|
2010-07-19 11:33:33 -07:00
|
|
|
#include "ContentProcess.h"
|
2009-06-30 13:39:22 -07:00
|
|
|
|
2010-05-13 16:44:53 -07:00
|
|
|
using mozilla::ipc::IOThreadChild;
|
2009-06-30 13:39:22 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2009-08-12 09:18:08 -07:00
|
|
|
namespace dom {
|
2009-06-30 13:39:22 -07:00
|
|
|
|
2012-12-18 08:24:42 -08:00
|
|
|
void
|
|
|
|
ContentProcess::SetAppDir(const nsACString& aPath)
|
|
|
|
{
|
|
|
|
mXREEmbed.SetAppDir(aPath);
|
|
|
|
}
|
|
|
|
|
2010-05-13 16:44:53 -07:00
|
|
|
bool
|
2010-07-19 11:33:33 -07:00
|
|
|
ContentProcess::Init()
|
2009-06-30 13:39:22 -07:00
|
|
|
{
|
2010-07-19 11:33:33 -07:00
|
|
|
mContent.Init(IOThreadChild::message_loop(),
|
2010-05-13 16:44:53 -07:00
|
|
|
ParentHandle(),
|
|
|
|
IOThreadChild::channel());
|
2010-05-25 17:13:47 -07:00
|
|
|
mXREEmbed.Start();
|
2010-09-23 18:39:32 -07:00
|
|
|
mContent.InitXPCOM();
|
2010-05-25 17:13:47 -07:00
|
|
|
|
2010-05-13 16:44:53 -07:00
|
|
|
return true;
|
2009-06-30 13:39:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-07-19 11:33:33 -07:00
|
|
|
ContentProcess::CleanUp()
|
2009-06-30 13:39:22 -07:00
|
|
|
{
|
2010-01-31 19:19:21 -08:00
|
|
|
mXREEmbed.Stop();
|
2009-06-30 13:39:22 -07:00
|
|
|
}
|
|
|
|
|
2013-06-03 03:14:40 -07:00
|
|
|
} // namespace dom
|
2009-06-30 13:39:22 -07:00
|
|
|
} // namespace mozilla
|