diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-09 04:21:51 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-09 04:21:51 +0000 |
commit | 2456c5732fe85109c39dbdd3dbbb8262589a847e (patch) | |
tree | 2c80c90ee30afb95428903c267e0eebe028d73f5 /chrome/browser/plugin_process_host.h | |
parent | 22dac03746590ef7367c8af21ace424b77cae16d (diff) | |
download | chromium_src-2456c5732fe85109c39dbdd3dbbb8262589a847e.zip chromium_src-2456c5732fe85109c39dbdd3dbbb8262589a847e.tar.gz chromium_src-2456c5732fe85109c39dbdd3dbbb8262589a847e.tar.bz2 |
Linux: Catch plugin crashes.
BUG=25964
TEST=none
Review URL: http://codereview.chromium.org/371015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31416 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_process_host.h')
-rw-r--r-- | chrome/browser/plugin_process_host.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome/browser/plugin_process_host.h b/chrome/browser/plugin_process_host.h index 2717e0c..5d0c7e3 100644 --- a/chrome/browser/plugin_process_host.h +++ b/chrome/browser/plugin_process_host.h @@ -7,8 +7,9 @@ #include "build/build_config.h" -#include <set> #include <queue> +#include <set> +#include <string> #include <vector> #include "app/gfx/native_widget_types.h" @@ -114,6 +115,10 @@ class PluginProcessHost : public ChildProcessHost, gfx::NativeWindow caller_window); #endif +#if defined(OS_POSIX) + base::ProcessHandle InitHelperPosix(const CommandLine& cmd_line); +#endif + #if defined(OS_LINUX) void OnMapNativeViewId(gfx::NativeViewId id, gfx::PluginWindowHandle* output); #endif |