2009-06-30 18:51:05 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
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 18:51:05 +00:00
|
|
|
|
|
|
|
#ifndef dom_plugins_PluginProcessParent_h
|
|
|
|
#define dom_plugins_PluginProcessParent_h 1
|
|
|
|
|
2013-06-05 16:15:48 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2009-07-02 16:54:22 +00:00
|
|
|
#include "base/basictypes.h"
|
|
|
|
|
2009-06-30 18:51:05 +00:00
|
|
|
#include "base/file_path.h"
|
|
|
|
#include "base/scoped_ptr.h"
|
|
|
|
#include "base/thread.h"
|
|
|
|
#include "base/waitable_event.h"
|
|
|
|
#include "chrome/common/child_process_host.h"
|
|
|
|
|
|
|
|
#include "mozilla/ipc/GeckoChildProcessHost.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace plugins {
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2010-08-27 13:32:45 +00:00
|
|
|
class PluginProcessParent : public mozilla::ipc::GeckoChildProcessHost
|
2009-06-30 18:51:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-07-02 16:54:22 +00:00
|
|
|
PluginProcessParent(const std::string& aPluginFilePath);
|
2009-06-30 18:51:05 +00:00
|
|
|
~PluginProcessParent();
|
|
|
|
|
|
|
|
/**
|
2010-08-10 21:14:10 +00:00
|
|
|
* Synchronously launch the plugin process. If the process fails to launch
|
|
|
|
* after timeoutMs, this method will return false.
|
2009-06-30 18:51:05 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
bool Launch(int32_t timeoutMs);
|
2009-06-30 18:51:05 +00:00
|
|
|
|
2009-11-09 22:56:55 +00:00
|
|
|
void Delete();
|
|
|
|
|
2013-06-05 16:15:48 +00:00
|
|
|
virtual bool CanShutdown() MOZ_OVERRIDE
|
2009-06-30 18:51:05 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-01-14 01:20:00 +00:00
|
|
|
const std::string& GetPluginFilePath() { return mPluginFilePath; }
|
|
|
|
|
2009-10-27 21:52:37 +00:00
|
|
|
using mozilla::ipc::GeckoChildProcessHost::GetShutDownEvent;
|
|
|
|
using mozilla::ipc::GeckoChildProcessHost::GetChannel;
|
2009-06-30 18:51:05 +00:00
|
|
|
|
|
|
|
private:
|
2009-07-02 16:54:22 +00:00
|
|
|
std::string mPluginFilePath;
|
2009-06-30 18:51:05 +00:00
|
|
|
|
|
|
|
DISALLOW_EVIL_CONSTRUCTORS(PluginProcessParent);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace plugins
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // ifndef dom_plugins_PluginProcessParent_h
|