| Index: device/bluetooth/test/bluetooth_test.h
|
| diff --git a/device/bluetooth/test/bluetooth_test.h b/device/bluetooth/test/bluetooth_test.h
|
| index 51e6541f40c21555a8cc32177a321277dcd9199a..08617d83c65d055bf54cfb82db95e9a08655eb85 100644
|
| --- a/device/bluetooth/test/bluetooth_test.h
|
| +++ b/device/bluetooth/test/bluetooth_test.h
|
| @@ -271,6 +271,15 @@ class BluetoothTestBase : public testing::Test {
|
| enum BluetoothDevice::ConnectErrorCode);
|
| void GattErrorCallback(Call expected,
|
| BluetoothRemoteGattService::GattErrorCode);
|
| + void ReentrantStartNotifySessionSuccessCallback(
|
| + Call expected,
|
| + BluetoothRemoteGattCharacteristic* characteristic,
|
| + std::unique_ptr<BluetoothGattNotifySession> notify_session);
|
| + void ReentrantStartNotifySessionErrorCallback(
|
| + Call expected,
|
| + BluetoothRemoteGattCharacteristic* characteristic,
|
| + bool error_in_reentrant,
|
| + BluetoothGattService::GattErrorCode error_code);
|
|
|
| // Accessors to get callbacks bound to this fixture:
|
| base::Closure GetCallback(Call expected);
|
| @@ -286,6 +295,15 @@ class BluetoothTestBase : public testing::Test {
|
| BluetoothDevice::ConnectErrorCallback GetConnectErrorCallback(Call expected);
|
| base::Callback<void(BluetoothRemoteGattService::GattErrorCode)>
|
| GetGattErrorCallback(Call expected);
|
| + BluetoothRemoteGattCharacteristic::NotifySessionCallback
|
| + GetReentrantStartNotifySessionSuccessCallback(
|
| + Call expected,
|
| + BluetoothRemoteGattCharacteristic* characteristic);
|
| + base::Callback<void(BluetoothGattService::GattErrorCode)>
|
| + GetReentrantStartNotifySessionErrorCallback(
|
| + Call expected,
|
| + BluetoothRemoteGattCharacteristic* characteristic,
|
| + bool error_in_reentrant);
|
|
|
| // Reset all event count members to 0.
|
| void ResetEventCounts();
|
|
|