| Index: util/win/exception_handler_server.cc
|
| diff --git a/util/win/exception_handler_server.cc b/util/win/exception_handler_server.cc
|
| index 05087f1e604ced7aa58e965fb44dc600969e5350..023abf114f306808948fa14c76fba8f964cd18a9 100644
|
| --- a/util/win/exception_handler_server.cc
|
| +++ b/util/win/exception_handler_server.cc
|
| @@ -26,6 +26,7 @@
|
| #include "snapshot/crashpad_info_client_options.h"
|
| #include "snapshot/win/process_snapshot_win.h"
|
| #include "util/file/file_writer.h"
|
| +#include "util/misc/move.h"
|
| #include "util/misc/random_string.h"
|
| #include "util/misc/tri_state.h"
|
| #include "util/misc/uuid.h"
|
| @@ -179,7 +180,7 @@ class ClientData {
|
| CreateEvent(nullptr, false /* auto reset */, false, nullptr)),
|
| non_crash_dump_completed_event_(
|
| CreateEvent(nullptr, false /* auto reset */, false, nullptr)),
|
| - process_(process.Pass()),
|
| + process_(crashpad::move(process)),
|
| crash_exception_information_address_(
|
| crash_exception_information_address),
|
| non_crash_exception_information_address_(
|
|
|