1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_ENROLLER_FACTORY_IMPL_H
6 #define COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_ENROLLER_FACTORY_IMPL_H
8 #include "components/proximity_auth/cryptauth/cryptauth_enroller.h"
9 #include "components/proximity_auth/proximity_auth_client.h"
11 namespace proximity_auth
{
13 // Implementation of CryptAuthEnrollerFactory. Note that this class is in the
14 // proximity_auth/ rather than the cryptauth/ directory because of the
15 // dependency on ProximityAuthClient.
16 class CryptAuthEnrollerFactoryImpl
: public CryptAuthEnrollerFactory
{
18 explicit CryptAuthEnrollerFactoryImpl(
19 ProximityAuthClient
* proximity_auth_client
);
20 ~CryptAuthEnrollerFactoryImpl() override
;
22 // CryptAuthEnrollerFactory:
23 scoped_ptr
<CryptAuthEnroller
> CreateInstance() override
;
26 proximity_auth::ProximityAuthClient
* proximity_auth_client_
;
28 DISALLOW_COPY_AND_ASSIGN(CryptAuthEnrollerFactoryImpl
);
31 } // namespace proximity_auth
33 #endif // COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_ENROLLER_FACTORY_IMPL_H