Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Unified Diff: components/proximity_auth/cryptauth/cryptauth_device_manager.cc

Issue 2250023005: Re-write many calls to WrapUnique() with MakeUnique() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/proximity_auth/cryptauth/cryptauth_device_manager.cc
diff --git a/components/proximity_auth/cryptauth/cryptauth_device_manager.cc b/components/proximity_auth/cryptauth/cryptauth_device_manager.cc
index c2f51a3a8d6291a2b3a05374a20109778abca3d6..c74d52356a7cdb88bb6a3f9bce8e73fa96a74c4c 100644
--- a/components/proximity_auth/cryptauth/cryptauth_device_manager.cc
+++ b/components/proximity_auth/cryptauth/cryptauth_device_manager.cc
@@ -235,10 +235,10 @@ void CryptAuthDeviceManager::OnGetMyDevicesFailure(const std::string& error) {
}
std::unique_ptr<SyncScheduler> CryptAuthDeviceManager::CreateSyncScheduler() {
- return base::WrapUnique(new SyncSchedulerImpl(
+ return base::MakeUnique<SyncSchedulerImpl>(
this, base::TimeDelta::FromHours(kRefreshPeriodHours),
base::TimeDelta::FromMinutes(kDeviceSyncBaseRecoveryPeriodMinutes),
- kDeviceSyncMaxJitterRatio, "CryptAuth DeviceSync"));
+ kDeviceSyncMaxJitterRatio, "CryptAuth DeviceSync");
}
void CryptAuthDeviceManager::OnResyncMessage() {

Powered by Google App Engine
This is Rietveld 408576698