| Index: device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc
|
| diff --git a/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc b/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc
|
| index 3b3a44b1a28e517c0948bf5afa9aa9489ae4d756..939746abaddf5aad311c437ec1d3a3b92b5ae158 100644
|
| --- a/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc
|
| +++ b/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc
|
| @@ -266,6 +266,7 @@ void BluetoothGattCharacteristicServiceProviderImpl::ReadValue(
|
| DCHECK(OnOriginThread());
|
| DCHECK(delegate_);
|
| delegate_->GetValue(
|
| + dbus::ObjectPath(),
|
| base::Bind(&BluetoothGattCharacteristicServiceProviderImpl::OnReadValue,
|
| weak_ptr_factory_.GetWeakPtr(), method_call, response_sender),
|
| base::Bind(&BluetoothGattCharacteristicServiceProviderImpl::OnFailure,
|
| @@ -291,7 +292,7 @@ void BluetoothGattCharacteristicServiceProviderImpl::WriteValue(
|
|
|
| DCHECK(delegate_);
|
| delegate_->SetValue(
|
| - value,
|
| + dbus::ObjectPath(), value,
|
| base::Bind(&BluetoothGattCharacteristicServiceProviderImpl::OnWriteValue,
|
| weak_ptr_factory_.GetWeakPtr(), method_call, response_sender),
|
| base::Bind(&BluetoothGattCharacteristicServiceProviderImpl::OnFailure,
|
|
|