| Index: chrome/browser/resources/bluetooth_internals/device_table.js
|
| diff --git a/chrome/browser/resources/bluetooth_internals/device_table.js b/chrome/browser/resources/bluetooth_internals/device_table.js
|
| index be9e4b0ebcea62c9ce6e8a529f8d4b915756de8a..69f9009e2385ca18f01cf2313dc9290330b6abf0 100644
|
| --- a/chrome/browser/resources/bluetooth_internals/device_table.js
|
| +++ b/chrome/browser/resources/bluetooth_internals/device_table.js
|
| @@ -27,8 +27,8 @@ cr.define('device_table', function() {
|
| /** @private {?Array<device_collection.Device>} */
|
| this.devices_ = null;
|
|
|
| - return document.importNode($('table-template').content.children[0],
|
| - true /* deep */);
|
| + return document.importNode(
|
| + $('table-template').content.children[0], true /* deep */);
|
| });
|
|
|
| DeviceTable.prototype = {
|
| @@ -164,7 +164,8 @@ cr.define('device_table', function() {
|
| case device_collection.ConnectionStatus.CONNECTING:
|
| inspectLink.disabled = true;
|
| break;
|
| - default: assert('case not handled');
|
| + default:
|
| + assert('case not handled');
|
| }
|
|
|
| // Update the properties based on the header field path.
|
|
|