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

Unified Diff: components/proximity_auth/cryptauth_enroller_factory_impl.cc

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.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());
}

Powered by Google App Engine
This is Rietveld 408576698