| Index: device/bluetooth/bluetooth_low_energy_win_fake.h
|
| diff --git a/device/bluetooth/bluetooth_low_energy_win_fake.h b/device/bluetooth/bluetooth_low_energy_win_fake.h
|
| index 9db118b8beb68bbfa0c574b92b03bec429ae5e33..6a4b5ba66f6a3849411f9f66c3830773960ad4df 100644
|
| --- a/device/bluetooth/bluetooth_low_energy_win_fake.h
|
| +++ b/device/bluetooth/bluetooth_low_energy_win_fake.h
|
| @@ -62,6 +62,7 @@ struct GattCharacteristic {
|
| GattDescriptorsMap included_descriptors;
|
| std::vector<HRESULT> read_errors;
|
| std::vector<HRESULT> write_errors;
|
| + std::vector<HRESULT> notify_errors;
|
| std::vector<BLUETOOTH_GATT_EVENT_HANDLE> observers;
|
| };
|
|
|
| @@ -168,6 +169,9 @@ class BluetoothLowEnergyWrapperFake : public BluetoothLowEnergyWrapper {
|
| const std::vector<uint8_t>& value);
|
| void SimulateCharacteristicValueChangeNotification(
|
| GattCharacteristic* characteristic);
|
| + void SimulateGattCharacteristicSetNotifyError(
|
| + GattCharacteristic* characteristic,
|
| + HRESULT error);
|
| void SimulateGattCharacteristicReadError(GattCharacteristic* characteristic,
|
| HRESULT error);
|
| void SimulateGattCharacteristicWriteError(GattCharacteristic* characteristic,
|
|
|