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..7bd47673e3e9e16960c0e25e68bd863ebf46e682 100644 |
--- a/content/public/browser/render_process_host.h |
+++ b/content/public/browser/render_process_host.h |
@@ -5,6 +5,8 @@ |
#ifndef CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ |
#define CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ |
+#include <string> |
Charlie Reis
2014/11/10 19:57:25
Is this necessary?
sramajay
2014/11/11 14:16:05
Done.
|
+ |
#include "base/basictypes.h" |
#include "base/id_map.h" |
#include "base/process/kill.h" |
@@ -42,14 +44,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; |
}; |