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

Unified Diff: chromeos/components/tether/ble_scanner_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_scanner.cc ('k') | chromeos/components/tether/initializer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/components/tether/ble_scanner_unittest.cc
diff --git a/chromeos/components/tether/ble_scanner_unittest.cc b/chromeos/components/tether/ble_scanner_unittest.cc
index b3292e380e31f6fd2f7965cbf99822a065755749..abb7b3b906581b9ce4324bfc20b7d9e697a3cb3f 100644
--- a/chromeos/components/tether/ble_scanner_unittest.cc
+++ b/chromeos/components/tether/ble_scanner_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/proto/cryptauth_api.pb.h"
#include "components/cryptauth/remote_device_test_util.h"
#include "device/bluetooth/test/mock_bluetooth_adapter.h"
@@ -159,7 +159,7 @@ class BleScannerTest : public testing::Test {
CreateFakeBackgroundScanFilter());
mock_local_device_data_provider_ =
- base::MakeUnique<MockLocalDeviceDataProvider>();
+ base::MakeUnique<cryptauth::MockLocalDeviceDataProvider>();
mock_local_device_data_provider_->SetPublicKey(
base::MakeUnique<std::string>(fake_local_public_key));
mock_local_device_data_provider_->SetBeaconSeeds(
@@ -226,7 +226,8 @@ class BleScannerTest : public testing::Test {
TestServiceDataProvider* test_service_data_provider_;
cryptauth::MockForegroundEidGenerator* mock_eid_generator_;
- std::unique_ptr<MockLocalDeviceDataProvider> mock_local_device_data_provider_;
+ std::unique_ptr<cryptauth::MockLocalDeviceDataProvider>
+ mock_local_device_data_provider_;
scoped_refptr<NiceMock<device::MockBluetoothAdapter>> mock_adapter_;
device::MockBluetoothDiscoverySession* mock_discovery_session_;
« no previous file with comments | « chromeos/components/tether/ble_scanner.cc ('k') | chromeos/components/tether/initializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698