Index: third_party/crashpad/crashpad/snapshot/win/module_snapshot_win.h |
diff --git a/third_party/crashpad/crashpad/snapshot/win/module_snapshot_win.h b/third_party/crashpad/crashpad/snapshot/win/module_snapshot_win.h |
index dd12ae8bf35fb90993fd881eeeb065aec3763057..89c42b79446bfca97a34ec24e254e37306bf1baa 100644 |
--- a/third_party/crashpad/crashpad/snapshot/win/module_snapshot_win.h |
+++ b/third_party/crashpad/crashpad/snapshot/win/module_snapshot_win.h |
@@ -19,11 +19,11 @@ |
#include <stdint.h> |
#include <map> |
+#include <memory> |
#include <string> |
#include <vector> |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "snapshot/crashpad_info_client_options.h" |
#include "snapshot/module_snapshot.h" |
#include "snapshot/win/process_reader_win.h" |
@@ -109,7 +109,7 @@ class ModuleSnapshotWin final : public ModuleSnapshot { |
std::wstring name_; |
std::string pdb_name_; |
UUID uuid_; |
- scoped_ptr<PEImageReader> pe_image_reader_; |
+ std::unique_ptr<PEImageReader> pe_image_reader_; |
ProcessReaderWin* process_reader_; // weak |
time_t timestamp_; |
uint32_t age_; |