| Index: device/bluetooth/dbus/fake_bluetooth_gatt_characteristic_service_provider.cc
|
| diff --git a/device/bluetooth/dbus/fake_bluetooth_gatt_characteristic_service_provider.cc b/device/bluetooth/dbus/fake_bluetooth_gatt_characteristic_service_provider.cc
|
| index de772843180db56ac8b838b2fb85130796e1435e..cbc240dc5aa0517c8548fdb05e59508fa46530d3 100644
|
| --- a/device/bluetooth/dbus/fake_bluetooth_gatt_characteristic_service_provider.cc
|
| +++ b/device/bluetooth/dbus/fake_bluetooth_gatt_characteristic_service_provider.cc
|
| @@ -106,14 +106,10 @@
|
| }
|
|
|
| void FakeBluetoothGattCharacteristicServiceProvider::SendValueChanged(
|
| - const dbus::ObjectPath& device_path,
|
| - const std::vector<uint8_t>& value,
|
| - bool indicate) {
|
| + const std::vector<uint8_t>& value) {
|
| VLOG(1) << "Sent characteristic value changed: " << object_path_.value()
|
| << " UUID: " << uuid_;
|
| - last_device_path_ = device_path;
|
| - last_value_ = value;
|
| - last_indicate_flag_ = indicate;
|
| + sent_value_ = value;
|
| }
|
|
|
| void FakeBluetoothGattCharacteristicServiceProvider::GetValue(
|
|
|