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

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

Issue 1320783002: Make SharedMemoryHandle a class on windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ipc_global
Patch Set: Rebase. Created 5 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
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 46e6ac99c8a1d092fb90e317ee84864306c21fe5..1b79e3d7d6a3114678144daf3139439738cc6ef4 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -744,13 +744,12 @@ scoped_ptr<IPC::ChannelProxy> RenderProcessHostImpl::CreateChannelProxy(
VLOG(1) << "Mojo Channel is enabled on host";
return IPC::ChannelProxy::Create(
- IPC::ChannelMojo::CreateServerFactory(
- mojo_task_runner, channel_id),
+ IPC::ChannelMojo::CreateServerFactory(mojo_task_runner, channel_id),
this, runner.get());
}
- return IPC::ChannelProxy::Create(
- channel_id, IPC::Channel::MODE_SERVER, this, runner.get());
+ return IPC::ChannelProxy::Create(channel_id, IPC::Channel::MODE_SERVER, this,
+ runner.get());
}
void RenderProcessHostImpl::CreateMessageFilters() {
« no previous file with comments | « content/browser/compositor/software_output_device_win.cc ('k') | content/common/dwrite_font_platform_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698