| Index: chrome/browser/signin/easy_unlock_service.cc
|
| diff --git a/chrome/browser/signin/easy_unlock_service.cc b/chrome/browser/signin/easy_unlock_service.cc
|
| index b76ae4306b7b0859b29d7940eb635d7a363f962f..481380f189b04eed506c0cd72deac140326b7c93 100644
|
| --- a/chrome/browser/signin/easy_unlock_service.cc
|
| +++ b/chrome/browser/signin/easy_unlock_service.cc
|
| @@ -13,6 +13,7 @@
|
| #include "base/guid.h"
|
| #include "base/logging.h"
|
| #include "base/macros.h"
|
| +#include "base/memory/ptr_util.h"
|
| #include "base/metrics/histogram_macros.h"
|
| #include "base/sys_info.h"
|
| #include "base/threading/thread_task_runner_handle.h"
|
| @@ -255,7 +256,7 @@ void EasyUnlockService::RegisterProfilePrefs(
|
| registry->RegisterBooleanPref(prefs::kEasyUnlockAllowed, true);
|
| registry->RegisterBooleanPref(prefs::kEasyUnlockEnabled, false);
|
| registry->RegisterDictionaryPref(prefs::kEasyUnlockPairing,
|
| - new base::DictionaryValue());
|
| + base::MakeUnique<base::DictionaryValue>());
|
| registry->RegisterBooleanPref(
|
| prefs::kEasyUnlockProximityRequired,
|
| false,
|
|
|