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

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

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 years, 6 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_details_page.js
diff --git a/chrome/browser/resources/bluetooth_internals/device_details_page.js b/chrome/browser/resources/bluetooth_internals/device_details_page.js
index 3077fb53961dd87d84aae73a1af24cfa1477771e..7a573910768cfa891b09672348a74cf001430b90 100644
--- a/chrome/browser/resources/bluetooth_internals/device_details_page.js
+++ b/chrome/browser/resources/bluetooth_internals/device_details_page.js
@@ -58,23 +58,21 @@ cr.define('device_details_page', function() {
/** @private {?HTMLElement} */
this.connectBtn_ = null;
- this.pageDiv.appendChild(
- document.importNode($('device-details-template').content,
- true /* deep */));
+ this.pageDiv.appendChild(document.importNode(
+ $('device-details-template').content, true /* deep */));
- this.pageDiv.querySelector('.device-details').appendChild(
- this.deviceFieldSet_);
+ this.pageDiv.querySelector('.device-details')
+ .appendChild(this.deviceFieldSet_);
this.pageDiv.querySelector('.services').appendChild(this.serviceList_);
- this.pageDiv.querySelector('.forget').addEventListener(
- 'click', function() {
- this.disconnect();
- this.pageDiv.dispatchEvent(new CustomEvent('forgetpressed', {
- detail: {
- address: this.deviceInfo.address,
- },
- }));
- }.bind(this));
+ this.pageDiv.querySelector('.forget').addEventListener('click', function() {
+ this.disconnect();
+ this.pageDiv.dispatchEvent(new CustomEvent('forgetpressed', {
+ detail: {
+ address: this.deviceInfo.address,
+ },
+ }));
+ }.bind(this));
this.connectBtn_ = this.pageDiv.querySelector('.disconnect');
this.connectBtn_.addEventListener('click', function() {
@@ -95,8 +93,8 @@ cr.define('device_details_page', function() {
this.updateConnectionStatus_(
device_collection.ConnectionStatus.CONNECTING);
- device_broker.connectToDevice(this.deviceInfo.address).then(
- function(devicePtr) {
+ device_broker.connectToDevice(this.deviceInfo.address)
+ .then(function(devicePtr) {
this.devicePtr_ = devicePtr;
this.updateConnectionStatus_(
@@ -104,12 +102,14 @@ cr.define('device_details_page', function() {
// Fetch services asynchronously.
return this.devicePtr_.getServices();
- }.bind(this)).then(function(response) {
+ }.bind(this))
+ .then(function(response) {
this.deviceInfo.services = response.services;
this.serviceList_.load(this.deviceInfo.address);
this.redraw();
this.fireDeviceInfoChanged_();
- }.bind(this)).catch(function(error) {
+ }.bind(this))
+ .catch(function(error) {
// If a connection error occurs while fetching the services, the
// devicePtr reference must be removed.
if (this.devicePtr_) {
@@ -128,7 +128,8 @@ cr.define('device_details_page', function() {
/** Disconnects the page from the Bluetooth device. */
disconnect: function() {
- if (!this.devicePtr_) return;
+ if (!this.devicePtr_)
+ return;
this.devicePtr_.disconnect();
this.devicePtr_ = null;

Powered by Google App Engine
This is Rietveld 408576698