| Index: trunk/src/content/browser/plugin_data_remover_impl.cc
|
| ===================================================================
|
| --- trunk/src/content/browser/plugin_data_remover_impl.cc (revision 273593)
|
| +++ trunk/src/content/browser/plugin_data_remover_impl.cc (working copy)
|
| @@ -226,7 +226,7 @@
|
| return;
|
|
|
| DCHECK(!channel_.get());
|
| - channel_ = IPC::Channel::CreateClient(handle, this);
|
| + channel_.reset(new IPC::Channel(handle, IPC::Channel::MODE_CLIENT, this));
|
| if (!channel_->Connect()) {
|
| NOTREACHED() << "Couldn't connect to plugin";
|
| SignalDone();
|
|
|