| Index: components/proximity_auth/cryptauth_enroller_factory_impl.h
|
| diff --git a/components/proximity_auth/cryptauth_enroller_factory_impl.h b/components/proximity_auth/cryptauth_enroller_factory_impl.h
|
| index d6b7ebe04c9a4efc6fb7776e7813fe2e4e607e51..14891525663e6ee5ce0d21faa32181710656c65d 100644
|
| --- a/components/proximity_auth/cryptauth_enroller_factory_impl.h
|
| +++ b/components/proximity_auth/cryptauth_enroller_factory_impl.h
|
| @@ -6,7 +6,7 @@
|
| #define COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_ENROLLER_FACTORY_IMPL_H
|
|
|
| #include "base/macros.h"
|
| -#include "components/proximity_auth/cryptauth/cryptauth_enroller.h"
|
| +#include "components/cryptauth/cryptauth_enroller.h"
|
| #include "components/proximity_auth/proximity_auth_client.h"
|
|
|
| namespace proximity_auth {
|
| @@ -14,14 +14,15 @@ namespace proximity_auth {
|
| // Implementation of CryptAuthEnrollerFactory. Note that this class is in the
|
| // proximity_auth/ rather than the cryptauth/ directory because of the
|
| // dependency on ProximityAuthClient.
|
| -class CryptAuthEnrollerFactoryImpl : public CryptAuthEnrollerFactory {
|
| +class CryptAuthEnrollerFactoryImpl
|
| + : public cryptauth::CryptAuthEnrollerFactory {
|
| public:
|
| explicit CryptAuthEnrollerFactoryImpl(
|
| ProximityAuthClient* proximity_auth_client);
|
| ~CryptAuthEnrollerFactoryImpl() override;
|
|
|
| // CryptAuthEnrollerFactory:
|
| - std::unique_ptr<CryptAuthEnroller> CreateInstance() override;
|
| + std::unique_ptr<cryptauth::CryptAuthEnroller> CreateInstance() override;
|
|
|
| private:
|
| proximity_auth::ProximityAuthClient* proximity_auth_client_;
|
|
|