Index: handler/mac/exception_handler_server.cc |
diff --git a/handler/mac/exception_handler_server.cc b/handler/mac/exception_handler_server.cc |
index 050cc6f385480766b6cec5009e99b5db7ebc1b38..38a016e9d817dd20d0b0ad4959311b737108df18 100644 |
--- a/handler/mac/exception_handler_server.cc |
+++ b/handler/mac/exception_handler_server.cc |
@@ -14,6 +14,8 @@ |
#include "handler/mac/exception_handler_server.h" |
+#include <utility> |
+ |
#include "base/logging.h" |
#include "base/mac/mach_logging.h" |
#include "util/mach/composite_mach_message_server.h" |
@@ -21,7 +23,6 @@ |
#include "util/mach/mach_message.h" |
#include "util/mach/mach_message_server.h" |
#include "util/mach/notify_server.h" |
-#include "util/stdlib/move.h" |
namespace crashpad { |
@@ -184,7 +185,7 @@ class ExceptionHandlerServerRun : public UniversalMachExcServer::Interface, |
ExceptionHandlerServer::ExceptionHandlerServer( |
base::mac::ScopedMachReceiveRight receive_port, |
bool launchd) |
- : receive_port_(crashpad::move(receive_port)), |
+ : receive_port_(std::move(receive_port)), |
notify_port_(NewMachPort(MACH_PORT_RIGHT_RECEIVE)), |
launchd_(launchd) { |
CHECK(receive_port_.is_valid()); |