| Index: chrome/browser/resources/options/chromeos/bluetooth_add_device_overlay.js
|
| diff --git a/chrome/browser/resources/options/chromeos/bluetooth_add_device_overlay.js b/chrome/browser/resources/options/chromeos/bluetooth_add_device_overlay.js
|
| index 5eac14458ed010ce72486999eaf1456a58769bb1..3042eacec3750195ce80ff7701f433ccfbd3b694 100644
|
| --- a/chrome/browser/resources/options/chromeos/bluetooth_add_device_overlay.js
|
| +++ b/chrome/browser/resources/options/chromeos/bluetooth_add_device_overlay.js
|
| @@ -24,7 +24,7 @@ cr.define('options', function() {
|
|
|
| /**
|
| * The list of available (unpaired) bluetooth devices.
|
| - * @type {DeletableItemList}
|
| + * @type {options.DeletableItemList}
|
| * @private
|
| */
|
| deviceList_: null,
|
| @@ -79,7 +79,8 @@ cr.define('options', function() {
|
| * @private
|
| */
|
| createDeviceList_: function() {
|
| - this.deviceList_ = $('bluetooth-unpaired-devices-list');
|
| + this.deviceList_ = assertInstanceof($('bluetooth-unpaired-devices-list'),
|
| + options.DeletableItemList);
|
| options.system.bluetooth.BluetoothDeviceList.decorate(this.deviceList_);
|
| }
|
| };
|
|
|