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

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

Issue 10702048: Remove the code to wait on disconnected child processes to get the exit code. This was done in r101… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 8 years, 5 months 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
« no previous file with comments | « content/common/child_thread.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/render_process_host.h
===================================================================
--- content/public/browser/render_process_host.h (revision 145643)
+++ content/public/browser/render_process_host.h (working copy)
@@ -42,17 +42,14 @@
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() {}
« no previous file with comments | « content/common/child_thread.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698