| Index: components/proximity_auth/cryptauth/cryptauth_client_impl.cc
|
| diff --git a/components/proximity_auth/cryptauth/cryptauth_client_impl.cc b/components/proximity_auth/cryptauth/cryptauth_client_impl.cc
|
| index e1100624172e639cac3be1865eaa4fd2af65abec..c43bff64ab65d50df3529ac946c113a41392b31a 100644
|
| --- a/components/proximity_auth/cryptauth/cryptauth_client_impl.cc
|
| +++ b/components/proximity_auth/cryptauth/cryptauth_client_impl.cc
|
| @@ -193,11 +193,11 @@ CryptAuthClientFactoryImpl::~CryptAuthClientFactoryImpl() {
|
| }
|
|
|
| std::unique_ptr<CryptAuthClient> CryptAuthClientFactoryImpl::CreateInstance() {
|
| - return base::WrapUnique(new CryptAuthClientImpl(
|
| + return base::MakeUnique<CryptAuthClientImpl>(
|
| base::WrapUnique(new CryptAuthApiCallFlow()),
|
| base::WrapUnique(
|
| new CryptAuthAccessTokenFetcherImpl(token_service_, account_id_)),
|
| - url_request_context_, device_classifier_));
|
| + url_request_context_, device_classifier_);
|
| }
|
|
|
| } // proximity_auth
|
|
|