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

Unified Diff: device/bluetooth/test/mock_bluetooth_gatt_connection.cc

Issue 1292263002: bluetooth: Create base class BluetoothDevice::CreateGattConnection impl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bt-adapter-
Patch Set: Updated patchset dependency Created 5 years, 4 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/mock_bluetooth_gatt_connection.cc
diff --git a/device/bluetooth/test/mock_bluetooth_gatt_connection.cc b/device/bluetooth/test/mock_bluetooth_gatt_connection.cc
index 9af0128b6d144e1ccfce85f41ba75e4000de919d..60dfff1c8b21a33ae863cbbf915663c435a37707 100644
--- a/device/bluetooth/test/mock_bluetooth_gatt_connection.cc
+++ b/device/bluetooth/test/mock_bluetooth_gatt_connection.cc
@@ -13,7 +13,7 @@ namespace device {
MockBluetoothGattConnection::MockBluetoothGattConnection(
scoped_refptr<device::BluetoothAdapter> adapter,
const std::string& device_address)
- : BluetoothGattConnection(/* Next Patch: adapter.get(), device_address */) {
+ : BluetoothGattConnection(adapter.get(), device_address) {
ON_CALL(*this, GetDeviceAddress()).WillByDefault(Return(device_address));
ON_CALL(*this, IsConnected()).WillByDefault(Return(true));
}

Powered by Google App Engine
This is Rietveld 408576698