Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(848)

Unified Diff: chrome/browser/resources/bluetooth_internals/device_table.js

Issue 2600683002: Run tools/clang-format-js on some of chrome/browser/resources/ (Closed)
Patch Set: hackhackhack Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698