| Index: chrome/browser/resources/bluetooth_internals/characteristic_list.js
|
| diff --git a/chrome/browser/resources/bluetooth_internals/characteristic_list.js b/chrome/browser/resources/bluetooth_internals/characteristic_list.js
|
| index 7fb7708e975a2728bbe57f89e2e6165282b309af..17f4ebab97cd4b01d153c7bad9156b1c631397aa 100644
|
| --- a/chrome/browser/resources/bluetooth_internals/characteristic_list.js
|
| +++ b/chrome/browser/resources/bluetooth_internals/characteristic_list.js
|
| @@ -113,7 +113,13 @@ cr.define('characteristic_list', function() {
|
|
|
| /** @private {!value_control.ValueControl} */
|
| this.valueControl_ = new value_control.ValueControl();
|
| - this.valueControl_.load(this.deviceAddress_, this.serviceId_, this.info);
|
| +
|
| + this.valueControl_.load({
|
| + deviceAddress: this.deviceAddress_,
|
| + serviceId: this.serviceId_,
|
| + characteristicId: this.info.id,
|
| + properties: this.info.properties,
|
| + });
|
| this.valueControl_.setValue(this.info.last_known_value);
|
|
|
| /** @private {!descriptor_list.DescriptorList} */
|
|
|