| Index: device/bluetooth/bluetooth_low_energy_central_manager_delegate.mm
|
| diff --git a/device/bluetooth/bluetooth_low_energy_central_manager_delegate.mm b/device/bluetooth/bluetooth_low_energy_central_manager_delegate.mm
|
| index 598e4b97bcf70a177ce756c6a909519117f2a7e4..33656813526500cab494e28861eca121f0eb92b3 100644
|
| --- a/device/bluetooth/bluetooth_low_energy_central_manager_delegate.mm
|
| +++ b/device/bluetooth/bluetooth_low_energy_central_manager_delegate.mm
|
| @@ -33,6 +33,10 @@ class BluetoothLowEnergyCentralManagerBridge {
|
| adapter_->LowEnergyCentralManagerUpdatedState();
|
| }
|
|
|
| + virtual void DidConnectPeripheral(CBPeripheral* peripheral) {
|
| + adapter_->DidConnectPeripheral(peripheral);
|
| + }
|
| +
|
| private:
|
| BluetoothLowEnergyDiscoveryManagerMac* discovery_manager_;
|
| BluetoothAdapterMac* adapter_;
|
| @@ -65,4 +69,9 @@ class BluetoothLowEnergyCentralManagerBridge {
|
| bridge_->UpdatedState();
|
| }
|
|
|
| +- (void)centralManager:(CBCentralManager*)central
|
| + didConnectPeripheral:(CBPeripheral*)peripheral {
|
| + bridge_->DidConnectPeripheral(peripheral);
|
| +}
|
| +
|
| @end
|
|
|