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

Unified Diff: chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h

Issue 2561203002: Migrate weave-related classes from proximity_auth/ble to cryptauth/ble. (Closed)
Patch Set: Rebase. Created 4 years 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: chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
diff --git a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
index 7285b2c9818e17a92f4fc11e5cf2a9c878760a62..91416507356b0cd0553b706c7b6c26f3ead6bee2 100644
--- a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
+++ b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
@@ -28,14 +28,14 @@ class BrowserContext;
}
namespace cryptauth {
+class BluetoothThrottler;
+class Connection;
class ExternalDeviceInfo;
class SecureMessageDelegate;
}
namespace proximity_auth {
-class Connection;
class BluetoothLowEnergyConnectionFinder;
-class BluetoothThrottler;
}
namespace extensions {
@@ -477,8 +477,7 @@ class EasyUnlockPrivateFindSetupConnectionFunction
// Called when the connection with the remote device advertising the setup
// service was found.
- void OnConnectionFound(
- std::unique_ptr<proximity_auth::Connection> connection);
+ void OnConnectionFound(std::unique_ptr<cryptauth::Connection> connection);
// Callback when waiting for |connection_finder_| to return.
void OnConnectionFinderTimedOut();
@@ -488,7 +487,7 @@ class EasyUnlockPrivateFindSetupConnectionFunction
connection_finder_;
// The connection throttler passed to the BLE connection finder.
- std::unique_ptr<proximity_auth::BluetoothThrottler> bluetooth_throttler_;
+ std::unique_ptr<cryptauth::BluetoothThrottler> bluetooth_throttler_;
// Used for timing out when waiting for the connection finder to return.
std::unique_ptr<base::Timer> timer_;

Powered by Google App Engine
This is Rietveld 408576698