| Index: chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
|
| diff --git a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
|
| index 62df6c85f4a51b2ef67e1b7335107983e3d8d552..6d2a5b9469112f67ae3ede9198d8d8e2748040dc 100644
|
| --- a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
|
| +++ b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
|
| @@ -124,9 +124,9 @@ class EasyUnlockPrivateCryptoDelegateChromeOS
|
| } // namespace
|
|
|
| // static
|
| -scoped_ptr<EasyUnlockPrivateCryptoDelegate>
|
| - EasyUnlockPrivateCryptoDelegate::Create() {
|
| - return scoped_ptr<EasyUnlockPrivateCryptoDelegate>(
|
| +std::unique_ptr<EasyUnlockPrivateCryptoDelegate>
|
| +EasyUnlockPrivateCryptoDelegate::Create() {
|
| + return std::unique_ptr<EasyUnlockPrivateCryptoDelegate>(
|
| new EasyUnlockPrivateCryptoDelegateChromeOS());
|
| }
|
|
|
|
|