| Index: crypto/scoped_test_system_nss_key_slot.h
|
| diff --git a/crypto/scoped_test_system_nss_key_slot.h b/crypto/scoped_test_system_nss_key_slot.h
|
| index 99a269cddabadac4e672f8e00ad01f1e878db25d..eb8fbc97a8feb2e2d8560db9a5f1712dae8ccba9 100644
|
| --- a/crypto/scoped_test_system_nss_key_slot.h
|
| +++ b/crypto/scoped_test_system_nss_key_slot.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CRYPTO_SCOPED_TEST_SYSTEM_NSS_KEY_SLOT_H_
|
| #define CRYPTO_SCOPED_TEST_SYSTEM_NSS_KEY_SLOT_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "crypto/crypto_export.h"
|
|
|
| // Forward declaration, from <pk11pub.h>
|
| @@ -33,7 +34,7 @@ class CRYPTO_EXPORT ScopedTestSystemNSSKeySlot {
|
| PK11SlotInfo* slot() const;
|
|
|
| private:
|
| - scoped_ptr<ScopedTestNSSDB> test_db_;
|
| + std::unique_ptr<ScopedTestNSSDB> test_db_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ScopedTestSystemNSSKeySlot);
|
| };
|
|
|