| Index: chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.h
|
| diff --git a/chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.h b/chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.h
|
| index 4bc63d46bbe50fefe5f914e8c509bd60b5d37058..68a6552a14ca24eff6b9a25b80a1e972662a7589 100644
|
| --- a/chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.h
|
| +++ b/chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.h
|
| @@ -115,8 +115,8 @@ class EasyUnlockKeyManager {
|
|
|
| // Stores the current operation in progress. At most one of these variables
|
| // can be non-null at any time.
|
| - scoped_ptr<EasyUnlockRefreshKeysOperation> pending_write_operation_;
|
| - scoped_ptr<EasyUnlockGetKeysOperation> pending_read_operation_;
|
| + std::unique_ptr<EasyUnlockRefreshKeysOperation> pending_write_operation_;
|
| + std::unique_ptr<EasyUnlockGetKeysOperation> pending_read_operation_;
|
|
|
| base::WeakPtrFactory<EasyUnlockKeyManager> weak_ptr_factory_;
|
|
|
|
|