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