#ifndef CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_
#define CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_
#include <list>
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "base/process.h"
#include "content/browser/child_process_launcher.h"
#include "content/public/browser/browser_child_process_host.h"
#include "content/public/browser/child_process_data.h"
#include "content/public/common/child_process_host_delegate.h"
namespace content {
class BrowserChildProcessHostIterator;
}
class CONTENT_EXPORT BrowserChildProcessHostImpl
: public content::BrowserChildProcessHost,
public NON_EXPORTED_BASE(content::ChildProcessHostDelegate),
public ChildProcessLauncher::Client {
public:
BrowserChildProcessHostImpl(
content::ProcessType type,
content::BrowserChildProcessHostDelegate* delegate);
virtual ~BrowserChildProcessHostImpl();
static void TerminateAll();
virtual bool Send(IPC::Message* message) OVERRIDE;
virtual void Launch(
#if defined(OS_WIN)
const FilePath& exposed_dir,
#elif defined(OS_POSIX)
bool use_zygote,
const base::EnvironmentVector& environ,
#endif
CommandLine* cmd_line) OVERRIDE;
virtual const content::ChildProcessData& GetData() const OVERRIDE;
virtual content::ChildProcessHost* GetHost() const OVERRIDE;
virtual base::TerminationStatus GetTerminationStatus(int* exit_code) OVERRIDE;
virtual void SetName(const string16& name) OVERRIDE;
virtual void SetHandle(base::ProcessHandle handle) OVERRIDE;
base::ProcessHandle GetHandle() const;
void ForceShutdown();
void SetTerminateChildOnShutdown(bool terminate_on_shutdown);
void Notify(int type);
content::BrowserChildProcessHostDelegate* delegate() const {
return delegate_;
}
typedef std::list<BrowserChildProcessHostImpl*> BrowserChildProcessList;
private:
friend class content::BrowserChildProcessHostIterator;
static BrowserChildProcessList* GetIterator();
virtual bool CanShutdown() OVERRIDE;
virtual void OnChildDisconnected() OVERRIDE;
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
virtual void OnChannelError() OVERRIDE;
virtual void OnProcessLaunched() OVERRIDE;
content::ChildProcessData data_;
content::BrowserChildProcessHostDelegate* delegate_;
scoped_ptr<content::ChildProcessHost> child_process_host_;
scoped_ptr<ChildProcessLauncher> child_process_;
};
#endif