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

Unified Diff: components/proximity_auth/ble/proximity_auth_ble_system.h

Issue 1102093002: 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: components/proximity_auth/ble/proximity_auth_ble_system.h
diff --git a/components/proximity_auth/ble/proximity_auth_ble_system.h b/components/proximity_auth/ble/proximity_auth_ble_system.h
index ab59bae45f141a4452f5cf7f7220db2c72a2fd25..29ba6623f1085ad8d1a89f2ef4693795b3f12154 100644
--- a/components/proximity_auth/ble/proximity_auth_ble_system.h
+++ b/components/proximity_auth/ble/proximity_auth_ble_system.h
@@ -6,6 +6,9 @@
#define COMPONENTS_PROXIMITY_AUTH_BLE_PROXIMITY_AUTH_BLE_SYSTEM_H_
#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+
+#include "components/proximity_auth/ble/bluetooth_low_energy_connection_finder.h"
msarda 2015/04/27 08:11:07 Nit: This include seems broken (why blank line bef
namespace proximity_auth {
@@ -19,6 +22,8 @@ class ProximityAuthBleSystem {
~ProximityAuthBleSystem();
private:
+ scoped_ptr<BluetoothLowEnergyConnectionFinder> connection_finder_;
+
DISALLOW_COPY_AND_ASSIGN(ProximityAuthBleSystem);
};

Powered by Google App Engine
This is Rietveld 408576698