| 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 bfdb976da5e3ca9fe5f05fdc13942a1e7a679e77..8064f7110b1b0a97add856d5a2eab78f032384f5 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -537,12 +537,11 @@ bool RenderProcessHostImpl::Init() {
|
| // Setup the IPC channel.
|
| const std::string channel_id =
|
| IPC::Channel::GenerateVerifiedChannelID(std::string());
|
| - channel_.reset(
|
| - new IPC::ChannelProxy(channel_id,
|
| - IPC::Channel::MODE_SERVER,
|
| - this,
|
| - BrowserThread::GetMessageLoopProxyForThread(
|
| - BrowserThread::IO).get()));
|
| + channel_ = IPC::ChannelProxy::CreateServer(
|
| + channel_id,
|
| + this,
|
| + BrowserThread::GetMessageLoopProxyForThread(
|
| + BrowserThread::IO).get());
|
|
|
| // Setup the Mojo channel.
|
| mojo_application_host_.reset(new MojoApplicationHost());
|
|
|