Index: device/bluetooth/dbus/bluetooth_gatt_application_service_provider.cc |
diff --git a/device/bluetooth/dbus/bluetooth_gatt_application_service_provider.cc b/device/bluetooth/dbus/bluetooth_gatt_application_service_provider.cc |
index 730f730dd60d2854204b0642cf12a9e870f05e1b..c32c0ad7e6fe87a0e63dab68153b41858fa13024 100644 |
--- a/device/bluetooth/dbus/bluetooth_gatt_application_service_provider.cc |
+++ b/device/bluetooth/dbus/bluetooth_gatt_application_service_provider.cc |
@@ -136,10 +136,8 @@ |
} |
void BluetoothGattApplicationServiceProvider::SendValueChanged( |
- const dbus::ObjectPath& device_path, |
const dbus::ObjectPath& characteristic_path, |
- const std::vector<uint8_t>& value, |
- bool indicate) { |
+ const std::vector<uint8_t>& value) { |
auto characteristic = std::find_if( |
characteristic_providers_.begin(), characteristic_providers_.end(), |
[&](const std::unique_ptr<BluetoothGattCharacteristicServiceProvider>& |
@@ -149,7 +147,7 @@ |
<< characteristic_path.value(); |
return; |
} |
- characteristic->get()->SendValueChanged(device_path, value, indicate); |
+ characteristic->get()->SendValueChanged(value); |
} |
// static |