diff options
Diffstat (limited to 'content/public/browser/render_process_host.h')
-rw-r--r-- | content/public/browser/render_process_host.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h index 7f5e3b7..a410591 100644 --- a/content/public/browser/render_process_host.h +++ b/content/public/browser/render_process_host.h @@ -42,17 +42,14 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender, struct RendererClosedDetails { RendererClosedDetails(base::ProcessHandle handle, base::TerminationStatus status, - int exit_code, - bool was_alive) { + int exit_code) { this->handle = handle; this->status = status; this->exit_code = exit_code; - this->was_alive = was_alive; } base::ProcessHandle handle; base::TerminationStatus status; int exit_code; - bool was_alive; }; virtual ~RenderProcessHost() {} |