diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-21 20:32:30 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-21 20:32:30 +0000 |
commit | fb1277e8766d447b967cfa959020b14c388e806e (patch) | |
tree | 1414679bfc830ff403c90fb1e8aa56a0180b514b /chrome/browser/plugin_process_host.h | |
parent | 51549da314ab40bfce645bb6c5875c4e5ec12f67 (diff) | |
download | chromium_src-fb1277e8766d447b967cfa959020b14c388e806e.zip chromium_src-fb1277e8766d447b967cfa959020b14c388e806e.tar.gz chromium_src-fb1277e8766d447b967cfa959020b14c388e806e.tar.bz2 |
Launch all child processes asynchronously so as not to block the IO thread.
BUG=6844, 27935
Review URL: http://codereview.chromium.org/402097
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32750 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, 3 insertions, 4 deletions
diff --git a/chrome/browser/plugin_process_host.h b/chrome/browser/plugin_process_host.h index c2a240d..bc9feec 100644 --- a/chrome/browser/plugin_process_host.h +++ b/chrome/browser/plugin_process_host.h @@ -99,6 +99,9 @@ class PluginProcessHost : public ChildProcessHost, void RequestPluginChannel(ResourceMessageFilter* renderer_message_filter, const std::string& mime_type, IPC::Message* reply_msg); + + virtual void OnProcessLaunched(); + // Message handlers. void OnChannelCreated(const IPC::ChannelHandle& channel_handle); void OnGetPluginFinderUrl(std::string* plugin_finder_url); @@ -115,10 +118,6 @@ 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 |