| Index: chrome/browser/resources/bluetooth_internals/devices_page.js
|
| diff --git a/chrome/browser/resources/bluetooth_internals/devices_page.js b/chrome/browser/resources/bluetooth_internals/devices_page.js
|
| index 1476f8a7e179fb967da8f317bdf0568b16994bb2..39c72a778a854b2e6b6360a18bb59b1925b3e6af 100644
|
| --- a/chrome/browser/resources/bluetooth_internals/devices_page.js
|
| +++ b/chrome/browser/resources/bluetooth_internals/devices_page.js
|
| @@ -49,6 +49,15 @@ cr.define('devices_page', function() {
|
| this.deviceTable.setDevices(devices);
|
| },
|
|
|
| + /**
|
| + * Updates the inspect status of the given |deviceInfo| in the device table.
|
| + * @param {!interfaces.BluetoothDevice.DeviceInfo} deviceInfo
|
| + * @param {boolean} isInspecting
|
| + */
|
| + setInspecting: function(deviceInfo, isInspecting) {
|
| + this.deviceTable.setInspecting(deviceInfo, isInspecting);
|
| + },
|
| +
|
| setScanStatus: function(status) {
|
| switch (status) {
|
| case ScanStatus.OFF:
|
|
|