Chromium Code Reviews| 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; |
|
jam
2014/01/30 21:41:03
nit: add documentation
Drew Haven
2014/01/31 20:00:12
Done.
|
| }; |
| }; // namespace content |