Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1288)

Unified Diff: content/public/browser/render_process_host.h

Issue 681733003: Removed the ProcessHandle from the RendererClosedDetails payload (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed mac issues Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698