Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Unified Diff: third_party/crashpad/crashpad/util/mach/exc_server_variants.h

Issue 1911823002: Convert //third_party from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update crashpad's README.chromium Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};
« no previous file with comments | « third_party/crashpad/crashpad/tools/tool_support.cc ('k') | third_party/crashpad/crashpad/util/mach/task_memory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698