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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 1488853002: Add multiplexing of message pipes in the new EDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix chrome and POSIX Created 5 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/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index 91e438fc7840f264ef0ac50a31163f89e13eb5c7..afbd92ba0238251c7353e4434f48e1047a275ff5 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -2449,8 +2449,6 @@ void RenderProcessHostImpl::OnProcessLaunched() {
SendExternalMojoShellHandleToChild(GetHandle(), this);
#endif
-#if defined(OS_WIN)
- // TODO(jam): enable on POSIX
if (base::CommandLine::ForCurrentProcess()->HasSwitch("use-new-edk") &&
child_process_launcher_.get()) {
base::ProcessHandle process_handle =
@@ -2466,7 +2464,6 @@ void RenderProcessHostImpl::OnProcessLaunched() {
#endif
process_handle, true)));
}
-#endif
// Allow Mojo to be setup before the renderer sees any Chrome IPC messages.
// This way, Mojo can be safely used from the renderer in response to any

Powered by Google App Engine
This is Rietveld 408576698