| Index: ppapi/nacl_irt/manifest_service.cc
|
| diff --git a/ppapi/nacl_irt/manifest_service.cc b/ppapi/nacl_irt/manifest_service.cc
|
| index 0afa217e2897a142a1dfefe555384a3c02565fec..79da286c2a29a4508a9c73dc2bb5f0df1d3305bc 100644
|
| --- a/ppapi/nacl_irt/manifest_service.cc
|
| +++ b/ppapi/nacl_irt/manifest_service.cc
|
| @@ -22,10 +22,9 @@ ManifestService::ManifestService(
|
| scoped_refptr<base::MessageLoopProxy> io_message_loop,
|
| base::WaitableEvent* shutdown_event) {
|
| filter_ = new IPC::SyncMessageFilter(shutdown_event);
|
| - channel_.reset(new IPC::ChannelProxy(handle,
|
| - IPC::Channel::MODE_SERVER,
|
| - NULL, // Listener
|
| - io_message_loop));
|
| + channel_ = IPC::ChannelProxy::CreateServer(handle,
|
| + NULL, // Listener
|
| + io_message_loop);
|
| channel_->AddFilter(filter_.get());
|
| }
|
|
|
|
|