| Index: trunk/src/content/common/child_process_host_impl.cc
|
| ===================================================================
|
| --- trunk/src/content/common/child_process_host_impl.cc (revision 273593)
|
| +++ trunk/src/content/common/child_process_host_impl.cc (working copy)
|
| @@ -164,7 +164,8 @@
|
|
|
| std::string ChildProcessHostImpl::CreateChannel() {
|
| channel_id_ = IPC::Channel::GenerateVerifiedChannelID(std::string());
|
| - channel_ = IPC::Channel::CreateServer(channel_id_, this);
|
| + channel_.reset(new IPC::Channel(
|
| + channel_id_, IPC::Channel::MODE_SERVER, this));
|
| if (!channel_->Connect())
|
| return std::string();
|
|
|
|
|