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

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

Issue 2576603002: bluetooth: Add device details page with basic properties to internals page. (Closed)
Patch Set: Fix formatting, fix comments, fix test, change service/rssi display 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_collection.js
diff --git a/chrome/browser/resources/bluetooth_internals/device_collection.js b/chrome/browser/resources/bluetooth_internals/device_collection.js
index 6f68ec9eb509eb80defd87635e3f4b864dd111ad..9fdc7435e7d9fb8e2e7ef2fe3836c3b94f0b5123 100644
--- a/chrome/browser/resources/bluetooth_internals/device_collection.js
+++ b/chrome/browser/resources/bluetooth_internals/device_collection.js
@@ -89,7 +89,7 @@ cr.define('device_collection', function() {
* @param {string} address The address of the device.
* @param {number} status The new connection status.
*/
- updateConnectionStatus: function(address, status, opt_error) {
+ updateConnectionStatus: function(address, status) {
var device = assert(this.getByAddress(address), 'Device does not exist');
device.connectionStatus = status;
this.updateIndex(this.indexOf(device));

Powered by Google App Engine
This is Rietveld 408576698