| Index: sandbox/linux/suid/client/setuid_sandbox_client.h
|
| diff --git a/sandbox/linux/suid/client/setuid_sandbox_client.h b/sandbox/linux/suid/client/setuid_sandbox_client.h
|
| index 026894fc27b9cc952fb7f65baed48e9c075f14b8..d1cff4256aa98fcc85ecc02e1eaed403fdbae629 100644
|
| --- a/sandbox/linux/suid/client/setuid_sandbox_client.h
|
| +++ b/sandbox/linux/suid/client/setuid_sandbox_client.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef SANDBOX_LINUX_SUID_SETUID_SANDBOX_CLIENT_H_
|
| #define SANDBOX_LINUX_SUID_SETUID_SANDBOX_CLIENT_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/environment.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "sandbox/sandbox_export.h"
|
|
|
| namespace sandbox {
|
| @@ -60,7 +61,7 @@ class SANDBOX_EXPORT SetuidSandboxClient {
|
| explicit SetuidSandboxClient(base::Environment* env);
|
|
|
| // Holds the environment. Will never be NULL.
|
| - scoped_ptr<base::Environment> env_;
|
| + std::unique_ptr<base::Environment> env_;
|
| bool sandboxed_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SetuidSandboxClient);
|
|
|