| Index: device/bluetooth/test/bluetooth_test_android.h
|
| diff --git a/device/bluetooth/test/bluetooth_test_android.h b/device/bluetooth/test/bluetooth_test_android.h
|
| index 910825cd4af062f33a3b8a9631f4c324b151079c..4db263bce4c98ca76ee54a5407c94653f893079f 100644
|
| --- a/device/bluetooth/test/bluetooth_test_android.h
|
| +++ b/device/bluetooth/test/bluetooth_test_android.h
|
| @@ -31,6 +31,8 @@ class BluetoothTestAndroid : public BluetoothTestBase {
|
| void SimulateGattConnectionError(BluetoothDevice* device,
|
| BluetoothDevice::ConnectErrorCode) override;
|
| void SimulateGattDisconnection(BluetoothDevice* device) override;
|
| + void SimulateGattServicesDiscovered(BluetoothDevice* device) override;
|
| + void SimulateGattServicesDiscoveryError(BluetoothDevice* device) override;
|
|
|
| // Records that Java FakeBluetoothDevice connectGatt was called.
|
| void OnFakeBluetoothDeviceConnectGattCalled(JNIEnv* env, jobject caller);
|
| @@ -38,6 +40,9 @@ class BluetoothTestAndroid : public BluetoothTestBase {
|
| // Records that Java FakeBluetoothGatt disconnect was called.
|
| void OnFakeBluetoothGattDisconnect(JNIEnv* env, jobject caller);
|
|
|
| + // Records that Java FakeBluetoothGatt discoverServices was called.
|
| + void OnFakeBluetoothGattDiscoverServices(JNIEnv* env, jobject caller);
|
| +
|
| base::android::ScopedJavaGlobalRef<jobject> j_fake_bluetooth_adapter_;
|
| };
|
|
|
|
|