| Index: chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc
|
| diff --git a/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc b/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc
|
| index 407922a5e68a7e2e758b218590e9177f6d25e712..05a0c1e3cc6923d97cc63db92bb164a0a14b52e8 100644
|
| --- a/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc
|
| +++ b/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc
|
| @@ -1153,6 +1153,18 @@ IN_PROC_BROWSER_TEST_F(BluetoothLowEnergyApiTest, GattConnection) {
|
| .WillOnce(InvokeCallbackArgument<1>(BluetoothDevice::ERROR_AUTH_TIMEOUT))
|
| .WillOnce(
|
| InvokeCallbackArgument<1>(BluetoothDevice::ERROR_UNSUPPORTED_DEVICE))
|
| + .WillOnce(InvokeCallbackArgument<1>(
|
| + BluetoothDevice::ERROR_ATTRIBUTE_LENGTH_INVALID))
|
| + .WillOnce(InvokeCallbackArgument<1>(
|
| + BluetoothDevice::ERROR_CONNECTION_CONGESTED))
|
| + .WillOnce(InvokeCallbackArgument<1>(
|
| + BluetoothDevice::ERROR_INSUFFICIENT_ENCRYPTION))
|
| + .WillOnce(
|
| + InvokeCallbackArgument<1>(BluetoothDevice::ERROR_OFFSET_INVALID))
|
| + .WillOnce(InvokeCallbackArgument<1>(BluetoothDevice::ERROR_READ_FAILED))
|
| + .WillOnce(InvokeCallbackArgument<1>(
|
| + BluetoothDevice::ERROR_REQUEST_NOT_SUPPORTED))
|
| + .WillOnce(InvokeCallbackArgument<1>(BluetoothDevice::ERROR_WRITE_FAILED))
|
| .WillOnce(InvokeCallbackWithScopedPtrArg<0, BluetoothGattConnection>(
|
| CreateGattConnection(mock_adapter_, kTestLeDeviceAddress0,
|
| true /* expect_disconnect */)))
|
|
|