| Index: third_party/crashpad/crashpad/snapshot/test/test_exception_snapshot.h
|
| diff --git a/third_party/crashpad/crashpad/snapshot/test/test_exception_snapshot.h b/third_party/crashpad/crashpad/snapshot/test/test_exception_snapshot.h
|
| index 638c0c92e44275edf429ce2493ab6d650371c2d9..254bff120e94fe57cdd9bf3fbd1526981a673652 100644
|
| --- a/third_party/crashpad/crashpad/snapshot/test/test_exception_snapshot.h
|
| +++ b/third_party/crashpad/crashpad/snapshot/test/test_exception_snapshot.h
|
| @@ -17,10 +17,10 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "snapshot/cpu_context.h"
|
| #include "snapshot/exception_snapshot.h"
|
| #include "util/stdlib/pointer_container.h"
|
| @@ -59,7 +59,7 @@ class TestExceptionSnapshot final : public ExceptionSnapshot {
|
| exception_address_ = exception_address;
|
| }
|
| void SetCodes(const std::vector<uint64_t>& codes) { codes_ = codes; }
|
| - void AddExtraMemory(scoped_ptr<MemorySnapshot> extra_memory) {
|
| + void AddExtraMemory(std::unique_ptr<MemorySnapshot> extra_memory) {
|
| extra_memory_.push_back(extra_memory.release());
|
| }
|
|
|
|
|