| Index: sandbox/win/src/acl.h
|
| diff --git a/sandbox/win/src/acl.h b/sandbox/win/src/acl.h
|
| index 0749367370cb45c7b7b657e3b1678d4d7ea144c5..7104155ee45a2e2c4d2dc011346438d7f51c15a1 100644
|
| --- a/sandbox/win/src/acl.h
|
| +++ b/sandbox/win/src/acl.h
|
| @@ -8,8 +8,9 @@
|
| #include <AccCtrl.h>
|
| #include <windows.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/memory/free_deleter.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "sandbox/win/src/sid.h"
|
|
|
| namespace sandbox {
|
| @@ -17,7 +18,7 @@ namespace sandbox {
|
| // Returns the default dacl from the token passed in.
|
| bool GetDefaultDacl(
|
| HANDLE token,
|
| - scoped_ptr<TOKEN_DEFAULT_DACL, base::FreeDeleter>* default_dacl);
|
| + std::unique_ptr<TOKEN_DEFAULT_DACL, base::FreeDeleter>* default_dacl);
|
|
|
| // Appends an ACE represented by |sid|, |access_mode|, and |access| to
|
| // |old_dacl|. If the function succeeds, new_dacl contains the new dacl and
|
|
|