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

Unified Diff: chromeos/components/tether/initializer.cc

Issue 2951303002: [CrOS Tether] Move LocalDeviceDataProvider from //chromeos/components/tether to //components/crypta… (Closed)
Patch Set: Rebased. Created 3 years, 6 months 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
« no previous file with comments | « chromeos/components/tether/initializer.h ('k') | chromeos/components/tether/local_device_data_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/components/tether/initializer.cc
diff --git a/chromeos/components/tether/initializer.cc b/chromeos/components/tether/initializer.cc
index 62b9ecdf0cacda62752f418eb3ef8c48d7609d8f..9b446e0ccdc938f1fa4cabac1e4761cb0158116b 100644
--- a/chromeos/components/tether/initializer.cc
+++ b/chromeos/components/tether/initializer.cc
@@ -14,7 +14,6 @@
#include "chromeos/components/tether/host_scan_scheduler.h"
#include "chromeos/components/tether/host_scanner.h"
#include "chromeos/components/tether/keep_alive_scheduler.h"
-#include "chromeos/components/tether/local_device_data_provider.h"
#include "chromeos/components/tether/network_configuration_remover.h"
#include "chromeos/components/tether/network_connection_handler_tether_delegate.h"
#include "chromeos/components/tether/notification_presenter.h"
@@ -30,6 +29,7 @@
#include "chromeos/network/network_state_handler.h"
#include "components/cryptauth/bluetooth_throttler_impl.h"
#include "components/cryptauth/cryptauth_service.h"
+#include "components/cryptauth/local_device_data_provider.h"
#include "components/cryptauth/remote_beacon_seed_fetcher.h"
#include "components/prefs/pref_service.h"
#include "components/proximity_auth/logging/logging.h"
@@ -174,7 +174,7 @@ void Initializer::OnBluetoothAdapterAdvertisingIntervalSet(
tether_host_fetcher_ =
base::MakeUnique<TetherHostFetcher>(cryptauth_service_);
local_device_data_provider_ =
- base::MakeUnique<LocalDeviceDataProvider>(cryptauth_service_);
+ base::MakeUnique<cryptauth::LocalDeviceDataProvider>(cryptauth_service_);
remote_beacon_seed_fetcher_ =
base::MakeUnique<cryptauth::RemoteBeaconSeedFetcher>(
cryptauth_service_->GetCryptAuthDeviceManager());
« no previous file with comments | « chromeos/components/tether/initializer.h ('k') | chromeos/components/tether/local_device_data_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698