| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index 23ca20d16e246870d5a1adb75870f2a3f312932a..a1200cd44c2826616e453387a09ea16e438adbf6 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -291,7 +291,7 @@ IPC::PlatformFileForTransit CreateFileForProcess(base::FilePath file_path,
|
| << dump_file.error_details();
|
| return IPC::InvalidPlatformFileForTransit();
|
| }
|
| - return IPC::TakeFileHandleForProcess(dump_file.Pass(), process);
|
| + return IPC::TakeFileHandleForProcess(std::move(dump_file), process);
|
| }
|
|
|
| #if defined(ENABLE_WEBRTC)
|
|
|