Index: handler/handler_main.cc |
diff --git a/handler/handler_main.cc b/handler/handler_main.cc |
index 578b8862aafac386b6dbe9730fc0ffe3764d5f7e..923d2b7ca770326849b7b58db5cd1d8dcd251283 100644 |
--- a/handler/handler_main.cc |
+++ b/handler/handler_main.cc |
@@ -33,6 +33,7 @@ |
#include "tools/tool_support.h" |
#include "handler/crash_report_upload_thread.h" |
#include "util/file/file_io.h" |
+#include "util/stdlib/move.h" |
#include "util/stdlib/map_insert.h" |
#include "util/stdlib/string_number_conversion.h" |
#include "util/string/split_string.h" |
@@ -314,7 +315,7 @@ int HandlerMain(int argc, char* argv[]) { |
} |
ExceptionHandlerServer exception_handler_server( |
- receive_right.Pass(), !options.mach_service.empty()); |
+ crashpad::move(receive_right), !options.mach_service.empty()); |
base::AutoReset<ExceptionHandlerServer*> reset_g_exception_handler_server( |
&g_exception_handler_server, &exception_handler_server); |