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

Unified Diff: content/child/child_thread.cc

Issue 553283002: IPC::ChannelMojo: Introduce IPC::MojoBootstrap for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed build error Created 6 years, 3 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/browser/renderer_host/render_process_host_impl.cc ('k') | ipc/ipc_test_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/child_thread.cc
diff --git a/content/child/child_thread.cc b/content/child/child_thread.cc
index a9a2fb6a6831ed959d5c0f7575b5241ceb2008f9..94847139c241682f420f6102bd2e236aa4396456 100644
--- a/content/child/child_thread.cc
+++ b/content/child/child_thread.cc
@@ -229,10 +229,7 @@ scoped_ptr<IPC::SyncChannel> ChildThread::CreateChannel(bool use_mojo_channel) {
if (use_mojo_channel) {
VLOG(1) << "Mojo is enabled on child";
return IPC::SyncChannel::Create(
- IPC::ChannelMojo::CreateFactory(
- channel_name_,
- IPC::Channel::MODE_CLIENT,
- ChildProcess::current()->io_message_loop_proxy()),
+ IPC::ChannelMojo::CreateClientFactory(channel_name_),
this,
ChildProcess::current()->io_message_loop_proxy(),
true,
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | ipc/ipc_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698