Index: components/proximity_auth/cryptauth_enroller_factory_impl.cc |
diff --git a/components/proximity_auth/cryptauth_enroller_factory_impl.cc b/components/proximity_auth/cryptauth_enroller_factory_impl.cc |
index 1d0ffef982bd1457434eccb730b5365512ed6ddd..c27e0a6934085cea6e8de3c6bd04ba69e765bb11 100644 |
--- a/components/proximity_auth/cryptauth_enroller_factory_impl.cc |
+++ b/components/proximity_auth/cryptauth_enroller_factory_impl.cc |
@@ -5,9 +5,9 @@ |
#include "components/proximity_auth/cryptauth_enroller_factory_impl.h" |
#include "base/memory/ptr_util.h" |
-#include "components/proximity_auth/cryptauth/cryptauth_client_impl.h" |
-#include "components/proximity_auth/cryptauth/cryptauth_enroller_impl.h" |
-#include "components/proximity_auth/cryptauth/secure_message_delegate.h" |
+#include "components/cryptauth/cryptauth_client_impl.h" |
+#include "components/cryptauth/cryptauth_enroller_impl.h" |
+#include "components/cryptauth/secure_message_delegate.h" |
namespace proximity_auth { |
@@ -17,9 +17,9 @@ CryptAuthEnrollerFactoryImpl::CryptAuthEnrollerFactoryImpl( |
CryptAuthEnrollerFactoryImpl::~CryptAuthEnrollerFactoryImpl() {} |
-std::unique_ptr<CryptAuthEnroller> |
+std::unique_ptr<cryptauth::CryptAuthEnroller> |
CryptAuthEnrollerFactoryImpl::CreateInstance() { |
- return base::MakeUnique<CryptAuthEnrollerImpl>( |
+ return base::MakeUnique<cryptauth::CryptAuthEnrollerImpl>( |
proximity_auth_client_->CreateCryptAuthClientFactory(), |
proximity_auth_client_->CreateSecureMessageDelegate()); |
} |