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

Unified Diff: components/proximity_auth/cryptauth_enroller_factory_impl.h

Issue 2502343003: Moved //components/proximity_auth/cryptauth to //components/cryptauth. (Closed)
Patch Set: Fixed proto #includes. Created 4 years, 1 month 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_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_;

Powered by Google App Engine
This is Rietveld 408576698