| Index: ipc/ipc_channel_factory.cc
|
| diff --git a/ipc/ipc_channel_factory.cc b/ipc/ipc_channel_factory.cc
|
| index 8fb4d772e0072c8186cc6635bda73593af4c0d74..50c00c05c88f01418724f74419b94def87e2fc4f 100644
|
| --- a/ipc/ipc_channel_factory.cc
|
| +++ b/ipc/ipc_channel_factory.cc
|
| @@ -51,8 +51,8 @@ std::unique_ptr<ChannelFactory> ChannelFactory::Create(
|
| const ChannelHandle& handle,
|
| Channel::Mode mode,
|
| const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner) {
|
| - return base::WrapUnique(
|
| - new PlatformChannelFactory(handle, mode, ipc_task_runner));
|
| + return base::MakeUnique<PlatformChannelFactory>(handle, mode,
|
| + ipc_task_runner);
|
| }
|
|
|
| } // namespace IPC
|
|
|