Index: device/bluetooth/bluetooth_low_energy_device_mac.h |
diff --git a/device/bluetooth/bluetooth_low_energy_device_mac.h b/device/bluetooth/bluetooth_low_energy_device_mac.h |
index 502e082a185b97c6fb21cdde24ed75fad7ec1878..ed1684602ef1eb5e2b89a8a6daa26502e7060912 100644 |
--- a/device/bluetooth/bluetooth_low_energy_device_mac.h |
+++ b/device/bluetooth/bluetooth_low_energy_device_mac.h |
@@ -24,7 +24,7 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothLowEnergyDeviceMac |
: public BluetoothDeviceMac { |
public: |
BluetoothLowEnergyDeviceMac(CBPeripheral* peripheral, |
- NSDictionary* advertisementData, |
+ NSDictionary* advertisement_data, |
int rssi); |
~BluetoothLowEnergyDeviceMac() override; |
@@ -81,7 +81,7 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothLowEnergyDeviceMac |
// Updates information about the device. |
virtual void Update(CBPeripheral* peripheral, |
- NSDictionary* advertisementData, |
+ NSDictionary* advertisement_data, |
int rssi); |
static std::string GetPeripheralIdentifier(CBPeripheral* peripheral); |
@@ -118,6 +118,9 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothLowEnergyDeviceMac |
// Stores the time of the most recent call to Update(). |
base::scoped_nsobject<NSDate> last_update_time_; |
+ // The services (identified by UUIDs) that this device provides. |
+ UUIDList advertised_uuids_; |
+ |
DISALLOW_COPY_AND_ASSIGN(BluetoothLowEnergyDeviceMac); |
}; |