| Index: base/process/process_info_win.cc
|
| diff --git a/base/process/process_info_win.cc b/base/process/process_info_win.cc
|
| index bd9e0702c3db300a1de3e8cd7d16fbb177fa6b3a..9c2843bbda683bcd7fab771559405503aa39b2ae 100644
|
| --- a/base/process/process_info_win.cc
|
| +++ b/base/process/process_info_win.cc
|
| @@ -6,7 +6,8 @@
|
|
|
| #include <windows.h>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "base/time/time.h"
|
| #include "base/win/scoped_handle.h"
|
| #include "base/win/windows_version.h"
|
| @@ -44,7 +45,7 @@ IntegrityLevel GetCurrentProcessIntegrityLevel() {
|
| return INTEGRITY_UNKNOWN;
|
| }
|
|
|
| - scoped_ptr<char[]> token_label_bytes(new char[token_info_length]);
|
| + std::unique_ptr<char[]> token_label_bytes(new char[token_info_length]);
|
| if (!token_label_bytes.get())
|
| return INTEGRITY_UNKNOWN;
|
|
|
|
|