Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1400)

Unified Diff: device/bluetooth/test/bluetooth_test.h

Issue 1394973003: bluetooth: android: Create BluetoothRemoteGattServiceAndroid objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bt-renames-
Patch Set: Address ortuno Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/test/bluetooth_test.h
diff --git a/device/bluetooth/test/bluetooth_test.h b/device/bluetooth/test/bluetooth_test.h
index 275fbbb85fdfafea2490a397f0ac8cee7aa49d59..43b47f2f10a45d2e787e6b0e583a64f17fecbd20 100644
--- a/device/bluetooth/test/bluetooth_test.h
+++ b/device/bluetooth/test/bluetooth_test.h
@@ -84,6 +84,14 @@ class BluetoothTestBase : public testing::Test {
// Simulates GattConnection disconnecting.
virtual void SimulateGattDisconnection(BluetoothDevice* device) {}
+ // Simulates success of discovering services. Two services are created.
+ // TODO(scheib): Add more control over how many services are created and
+ // their properties. http://crbug.com/541400
+ virtual void SimulateGattServicesDiscovered(BluetoothDevice* device) {}
+
+ // Simulates failure to discover services.
+ virtual void SimulateGattServicesDiscoveryError(BluetoothDevice* device) {}
+
// Remove the device from the adapter and delete it.
virtual void DeleteDevice(BluetoothDevice* device);
@@ -117,6 +125,7 @@ class BluetoothTestBase : public testing::Test {
int error_callback_count_ = 0;
int gatt_connection_attempts_ = 0;
int gatt_disconnection_attempts_ = 0;
+ int gatt_discovery_attempts_ = 0;
base::WeakPtrFactory<BluetoothTestBase> weak_factory_;
};

Powered by Google App Engine
This is Rietveld 408576698