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

Unified Diff: content/public/common/child_process_host_delegate.h

Issue 98603007: Launches a privileged utility process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actually works now. Removes unnecessary logging. Created 7 years 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/common/child_process_host_delegate.h
diff --git a/content/public/common/child_process_host_delegate.h b/content/public/common/child_process_host_delegate.h
index 89cb70afcec39fb4b76cdaf2de85b987b699ca15..4fb98420407bf5dddf9fb17a4f5aab8be26d82f8 100644
--- a/content/public/common/child_process_host_delegate.h
+++ b/content/public/common/child_process_host_delegate.h
@@ -7,6 +7,7 @@
#include <string>
+#include "base/process/process.h"
#include "content/common/content_export.h"
#include "ipc/ipc_listener.h"
@@ -26,6 +27,8 @@ class ChildProcessHostDelegate : public IPC::Listener {
// Called when the child process unexpected closes the IPC channel. Delegates
// would normally delete the object in this case.
virtual void OnChildDisconnected() {}
+
+ virtual base::ProcessHandle GetHandle() const = 0;
};
}; // namespace content

Powered by Google App Engine
This is Rietveld 408576698