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

Unified Diff: chromeos/components/tether/ble_advertiser_unittest.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/ble_advertiser.cc ('k') | chromeos/components/tether/ble_connection_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/components/tether/ble_advertiser_unittest.cc
diff --git a/chromeos/components/tether/ble_advertiser_unittest.cc b/chromeos/components/tether/ble_advertiser_unittest.cc
index 841f3bca38f0c6ac9e42be607a29b6390bc6133c..d9676ce8785b0e0952451b0843e61b506d3ad381 100644
--- a/chromeos/components/tether/ble_advertiser_unittest.cc
+++ b/chromeos/components/tether/ble_advertiser_unittest.cc
@@ -6,8 +6,8 @@
#include "base/logging.h"
#include "chromeos/components/tether/ble_constants.h"
-#include "chromeos/components/tether/mock_local_device_data_provider.h"
#include "components/cryptauth/mock_foreground_eid_generator.h"
+#include "components/cryptauth/mock_local_device_data_provider.h"
#include "components/cryptauth/mock_remote_beacon_seed_fetcher.h"
#include "components/cryptauth/proto/cryptauth_api.pb.h"
#include "components/cryptauth/remote_device_test_util.h"
@@ -148,7 +148,8 @@ class BleAdvertiserTest : public testing::Test {
mock_seed_fetcher_->SetSeedsForDevice(fake_devices_[2],
&device_2_beacon_seeds);
- mock_local_data_provider_ = base::MakeUnique<MockLocalDeviceDataProvider>();
+ mock_local_data_provider_ =
+ base::MakeUnique<cryptauth::MockLocalDeviceDataProvider>();
mock_local_data_provider_->SetPublicKey(
base::MakeUnique<std::string>(kFakePublicKey));
@@ -233,7 +234,8 @@ class BleAdvertiserTest : public testing::Test {
mock_adapter_;
cryptauth::MockForegroundEidGenerator* mock_eid_generator_;
std::unique_ptr<cryptauth::MockRemoteBeaconSeedFetcher> mock_seed_fetcher_;
- std::unique_ptr<MockLocalDeviceDataProvider> mock_local_data_provider_;
+ std::unique_ptr<cryptauth::MockLocalDeviceDataProvider>
+ mock_local_data_provider_;
std::vector<scoped_refptr<RegisterAdvertisementArgs>>
register_advertisement_args_;
« no previous file with comments | « chromeos/components/tether/ble_advertiser.cc ('k') | chromeos/components/tether/ble_connection_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698