| Index: third_party/crashpad/crashpad/snapshot/win/process_snapshot_win.h
|
| diff --git a/third_party/crashpad/crashpad/snapshot/win/process_snapshot_win.h b/third_party/crashpad/crashpad/snapshot/win/process_snapshot_win.h
|
| index 4d33d7be2e6bba8fb0f474d18cf2c35e5b271559..2f7f9cbad848a67a33a3a4abe4517a3eb0338e74 100644
|
| --- a/third_party/crashpad/crashpad/snapshot/win/process_snapshot_win.h
|
| +++ b/third_party/crashpad/crashpad/snapshot/win/process_snapshot_win.h
|
| @@ -20,11 +20,11 @@
|
| #include <sys/types.h>
|
|
|
| #include <map>
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "client/crashpad_info.h"
|
| #include "snapshot/crashpad_info_client_options.h"
|
| #include "snapshot/exception_snapshot.h"
|
| @@ -188,7 +188,7 @@ class ProcessSnapshotWin final : public ProcessSnapshot {
|
| PointerVector<internal::ThreadSnapshotWin> threads_;
|
| PointerVector<internal::ModuleSnapshotWin> modules_;
|
| std::vector<UnloadedModuleSnapshot> unloaded_modules_;
|
| - scoped_ptr<internal::ExceptionSnapshotWin> exception_;
|
| + std::unique_ptr<internal::ExceptionSnapshotWin> exception_;
|
| PointerVector<internal::MemoryMapRegionSnapshotWin> memory_map_;
|
| ProcessReaderWin process_reader_;
|
| UUID report_id_;
|
|
|