mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
64 lines
1.7 KiB
C++
64 lines
1.7 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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 "GMPProcessChild.h"
|
|
|
|
#include "base/command_line.h"
|
|
#include "base/string_util.h"
|
|
#include "chrome/common/chrome_switches.h"
|
|
#include "mozilla/ipc/IOThreadChild.h"
|
|
#include "mozilla/BackgroundHangMonitor.h"
|
|
|
|
using mozilla::ipc::IOThreadChild;
|
|
|
|
namespace mozilla {
|
|
namespace gmp {
|
|
|
|
GMPProcessChild::GMPProcessChild(ProcessHandle parentHandle)
|
|
: ProcessChild(parentHandle)
|
|
{
|
|
}
|
|
|
|
GMPProcessChild::~GMPProcessChild()
|
|
{
|
|
}
|
|
|
|
bool
|
|
GMPProcessChild::Init()
|
|
{
|
|
std::string pluginFilename;
|
|
|
|
#if defined(OS_POSIX)
|
|
// NB: need to be very careful in ensuring that the first arg
|
|
// (after the binary name) here is indeed the plugin module path.
|
|
// Keep in sync with dom/plugins/PluginModuleParent.
|
|
std::vector<std::string> values = CommandLine::ForCurrentProcess()->argv();
|
|
NS_ABORT_IF_FALSE(values.size() >= 2, "not enough args");
|
|
pluginFilename = values[1];
|
|
#elif defined(OS_WIN)
|
|
std::vector<std::wstring> values = CommandLine::ForCurrentProcess()->GetLooseValues();
|
|
NS_ABORT_IF_FALSE(values.size() >= 1, "not enough loose args");
|
|
pluginFilename = WideToUTF8(values[0]);
|
|
#else
|
|
#error Not implemented
|
|
#endif
|
|
|
|
BackgroundHangMonitor::Startup();
|
|
|
|
return mPlugin.Init(pluginFilename,
|
|
ParentHandle(),
|
|
IOThreadChild::message_loop(),
|
|
IOThreadChild::channel());
|
|
}
|
|
|
|
void
|
|
GMPProcessChild::CleanUp()
|
|
{
|
|
BackgroundHangMonitor::Shutdown();
|
|
}
|
|
|
|
} // namespace gmp
|
|
} // namespace mozilla
|