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

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

Issue 1898643002: Refactor device::BluetoothGattXXX classes to split into remote/local. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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_characteristic.cc
diff --git a/device/bluetooth/test/mock_bluetooth_gatt_characteristic.cc b/device/bluetooth/test/mock_bluetooth_gatt_characteristic.cc
index 5d012cd6df6de27cf914b4a6fc5cdf631dcfd378..b2147d958144c4512e938b30708f788aa779212b 100644
--- a/device/bluetooth/test/mock_bluetooth_gatt_characteristic.cc
+++ b/device/bluetooth/test/mock_bluetooth_gatt_characteristic.cc
@@ -29,7 +29,7 @@ MockBluetoothGattCharacteristic::MockBluetoothGattCharacteristic(
ON_CALL(*this, GetPermissions()).WillByDefault(Return(permissions));
ON_CALL(*this, IsNotifying()).WillByDefault(Return(false));
ON_CALL(*this, GetDescriptors())
- .WillByDefault(Return(std::vector<BluetoothGattDescriptor*>()));
+ .WillByDefault(Return(std::vector<BluetoothRemoteGattDescriptor*>()));
}
MockBluetoothGattCharacteristic::~MockBluetoothGattCharacteristic() {
« no previous file with comments | « device/bluetooth/test/mock_bluetooth_gatt_characteristic.h ('k') | device/bluetooth/test/mock_bluetooth_gatt_descriptor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698