| Index: components/nacl/browser/nacl_process_host.cc
|
| diff --git a/components/nacl/browser/nacl_process_host.cc b/components/nacl/browser/nacl_process_host.cc
|
| index f8b471185caaffbc90ef8ba30cafe9f6ec4d0124..5cf4cf49752249589cb1e45f50bdf50ddda1bf8b 100644
|
| --- a/components/nacl/browser/nacl_process_host.cc
|
| +++ b/components/nacl/browser/nacl_process_host.cc
|
| @@ -577,8 +577,8 @@ bool NaClProcessHost::LaunchSelLdr() {
|
| return true;
|
| }
|
| #endif
|
| - process_->Launch(new NaClSandboxedProcessLauncherDelegate(),
|
| - cmd_line.release(), true);
|
| + process_->Launch(base::MakeUnique<NaClSandboxedProcessLauncherDelegate>(),
|
| + std::move(cmd_line), true);
|
| return true;
|
| }
|
|
|
|
|