| Index: content/public/browser/render_process_host.h
|
| diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h
|
| index 4ae7f3a282a424a9853f82a850a46ef2b6549c53..dcec7d8cd8495901142e426a95e81087abbbaeaf 100644
|
| --- a/content/public/browser/render_process_host.h
|
| +++ b/content/public/browser/render_process_host.h
|
| @@ -42,14 +42,11 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
|
|
|
| // Details for RENDERER_PROCESS_CLOSED notifications.
|
| struct RendererClosedDetails {
|
| - RendererClosedDetails(base::ProcessHandle handle,
|
| - base::TerminationStatus status,
|
| + RendererClosedDetails(base::TerminationStatus status,
|
| int exit_code) {
|
| - this->handle = handle;
|
| this->status = status;
|
| this->exit_code = exit_code;
|
| }
|
| - base::ProcessHandle handle;
|
| base::TerminationStatus status;
|
| int exit_code;
|
| };
|
|
|