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

Unified Diff: chrome/browser/signin/easy_unlock_service.h

Issue 1094273003: Implementing a BLE connection finder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
Index: chrome/browser/signin/easy_unlock_service.h
diff --git a/chrome/browser/signin/easy_unlock_service.h b/chrome/browser/signin/easy_unlock_service.h
index 4824a954ac81a4273591c450e25c6fcefdf85636..969297e7859be0a52f4b328145a684306a31e2bf 100644
--- a/chrome/browser/signin/easy_unlock_service.h
+++ b/chrome/browser/signin/easy_unlock_service.h
@@ -35,6 +35,10 @@ namespace user_prefs {
class PrefRegistrySyncable;
}
+namespace proximity_auth {
+class ProximityAuthBleSystem;
+}
+
class EasyUnlockAppManager;
class EasyUnlockServiceObserver;
class Profile;
@@ -329,6 +333,11 @@ class EasyUnlockService : public KeyedService {
scoped_ptr<BluetoothDetector> bluetooth_detector_;
+ // The proximity auth over Bluetooth Low Energy system. This is main entry
+ // point to bootstap Smart Lock to discover phones over Bluetooth Low
+ // Energy.
+ scoped_ptr<proximity_auth::ProximityAuthBleSystem> proximity_auth_ble_system_;
+
#if defined(OS_CHROMEOS)
// Monitors suspend and wake state of ChromeOS.
class PowerMonitor;

Powered by Google App Engine
This is Rietveld 408576698