| Index: content/public/common/child_process_host_delegate.h
|
| diff --git a/content/public/common/child_process_host_delegate.h b/content/public/common/child_process_host_delegate.h
|
| index 89cb70afcec39fb4b76cdaf2de85b987b699ca15..4fb98420407bf5dddf9fb17a4f5aab8be26d82f8 100644
|
| --- a/content/public/common/child_process_host_delegate.h
|
| +++ b/content/public/common/child_process_host_delegate.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/process/process.h"
|
| #include "content/common/content_export.h"
|
| #include "ipc/ipc_listener.h"
|
|
|
| @@ -26,6 +27,8 @@ class ChildProcessHostDelegate : public IPC::Listener {
|
| // Called when the child process unexpected closes the IPC channel. Delegates
|
| // would normally delete the object in this case.
|
| virtual void OnChildDisconnected() {}
|
| +
|
| + virtual base::ProcessHandle GetHandle() const = 0;
|
| };
|
|
|
| }; // namespace content
|
|
|