Chromium Code Reviews| Index: trunk/src/ipc/ipc_channel_proxy.cc |
| =================================================================== |
| --- trunk/src/ipc/ipc_channel_proxy.cc (revision 273594) |
| +++ trunk/src/ipc/ipc_channel_proxy.cc (working copy) |
| @@ -52,7 +52,7 @@ |
| const Channel::Mode& mode) { |
| DCHECK(!channel_); |
| channel_id_ = handle.name; |
| - channel_ = Channel::CreateByModeForProxy(handle, mode, this); |
| + channel_.reset(new Channel(handle, mode, this)); |
| } |
| bool ChannelProxy::Context::TryFilters(const Message& message) { |