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

Unified Diff: device/bluetooth/test/mock_bluetooth_gatt_descriptor.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_descriptor.cc
diff --git a/device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc b/device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc
index bbe55f0a28a6d344296c543c5afff5219168c263..fce5a4d3160afac7080f54aee9c605898fd50394 100644
--- a/device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc
+++ b/device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc
@@ -16,7 +16,7 @@ MockBluetoothGattDescriptor::MockBluetoothGattDescriptor(
const std::string& identifier,
const BluetoothUUID& uuid,
bool is_local,
- BluetoothGattCharacteristic::Permissions permissions) {
+ BluetoothRemoteGattCharacteristic::Permissions permissions) {
ON_CALL(*this, GetIdentifier()).WillByDefault(Return(identifier));
ON_CALL(*this, GetUUID()).WillByDefault(Return(uuid));
ON_CALL(*this, IsLocal()).WillByDefault(Return(is_local));
« no previous file with comments | « device/bluetooth/test/mock_bluetooth_gatt_descriptor.h ('k') | device/bluetooth/test/mock_bluetooth_gatt_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698