| Index: third_party/crashpad/crashpad/util/mach/exc_server_variants.h
|
| diff --git a/third_party/crashpad/crashpad/util/mach/exc_server_variants.h b/third_party/crashpad/crashpad/util/mach/exc_server_variants.h
|
| index c80233cc6e3cb211cf3bddd771e88174133fae25..0d947432e5b9f679c612b5ce49a8f3635fadfedc 100644
|
| --- a/third_party/crashpad/crashpad/util/mach/exc_server_variants.h
|
| +++ b/third_party/crashpad/crashpad/util/mach/exc_server_variants.h
|
| @@ -17,10 +17,10 @@
|
|
|
| #include <mach/mach.h>
|
|
|
| +#include <memory>
|
| #include <set>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "util/mach/mach_extensions.h"
|
| #include "util/mach/mach_message_server.h"
|
|
|
| @@ -111,7 +111,7 @@ class UniversalMachExcServer final : public MachMessageServer::Interface {
|
| mach_msg_size_t MachMessageServerReplySize() override;
|
|
|
| private:
|
| - scoped_ptr<internal::UniversalMachExcServerImpl> impl_;
|
| + std::unique_ptr<internal::UniversalMachExcServerImpl> impl_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(UniversalMachExcServer);
|
| };
|
|
|