| Index: chrome/browser/extensions/api/messaging/native_process_launcher_win.cc
|
| diff --git a/chrome/browser/extensions/api/messaging/native_process_launcher_win.cc b/chrome/browser/extensions/api/messaging/native_process_launcher_win.cc
|
| index 2192b278dce828500122574494a0152e0108fa43..6ae37b3199d00fefc9dd0efb8698eeb9659e48ba 100644
|
| --- a/chrome/browser/extensions/api/messaging/native_process_launcher_win.cc
|
| +++ b/chrome/browser/extensions/api/messaging/native_process_launcher_win.cc
|
| @@ -170,7 +170,7 @@ bool NativeProcessLauncher::LaunchNativeProcess(
|
| return false;
|
| }
|
|
|
| - *process = cmd_process.Pass();
|
| + *process = std::move(cmd_process);
|
| *read_file = base::File::CreateForAsyncHandle(stdout_pipe.Take());
|
| *write_file = base::File::CreateForAsyncHandle(stdin_pipe.Take());
|
|
|
|
|