2017-10-28 02:10:06 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2016-06-11 05:27:24 +03: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/. */
|
|
|
|
#include "GPUProcessImpl.h"
|
|
|
|
#include "mozilla/ipc/IOThreadChild.h"
|
2016-10-12 10:08:37 +03:00
|
|
|
#include "nsXPCOM.h"
|
2016-06-11 05:27:24 +03:00
|
|
|
|
2017-04-24 19:46:09 +03:00
|
|
|
#if defined(OS_WIN) && defined(MOZ_SANDBOX)
|
|
|
|
#include "mozilla/sandboxTarget.h"
|
|
|
|
#endif
|
|
|
|
|
2016-06-11 05:27:24 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
using namespace ipc;
|
|
|
|
|
|
|
|
GPUProcessImpl::GPUProcessImpl(ProcessId aParentPid)
|
|
|
|
: ProcessChild(aParentPid)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GPUProcessImpl::~GPUProcessImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2017-02-05 08:52:38 +03:00
|
|
|
GPUProcessImpl::Init(int aArgc, char* aArgv[])
|
2016-06-11 05:27:24 +03:00
|
|
|
{
|
2017-04-24 19:46:09 +03:00
|
|
|
#if defined(MOZ_SANDBOX) && defined(OS_WIN)
|
|
|
|
mozilla::SandboxTarget::Instance()->StartSandbox();
|
|
|
|
#endif
|
|
|
|
|
2016-06-11 05:27:24 +03:00
|
|
|
return mGPU.Init(ParentPid(),
|
|
|
|
IOThreadChild::message_loop(),
|
|
|
|
IOThreadChild::channel());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPUProcessImpl::CleanUp()
|
|
|
|
{
|
2016-10-12 10:08:37 +03:00
|
|
|
NS_ShutdownXPCOM(nullptr);
|
2016-06-11 05:27:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|