Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.js |
diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.js b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.js |
index dd2378b8f11ba5e61a462f655a4f05a009925c84..265200451dfd56b5ada37f7d63edaacd2ff60786 100644 |
--- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.js |
+++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.js |
@@ -23,17 +23,6 @@ Polymer({ |
* @param {Event} e |
* @private |
*/ |
- itemTapped_: function(e) { |
- this.fire('device-event', { |
- action: 'connect', |
- device: this.device, |
- }); |
- }, |
- |
- /** |
- * @param {Event} e |
- * @private |
- */ |
menuSelected_: function(e) { |
e.currentTarget.opened = false; |
this.fire('device-event', { |
@@ -43,15 +32,6 @@ Polymer({ |
}, |
/** |
- * @param {Event} e |
- * @private |
- */ |
- doNothing_: function(e) { |
- // Avoid triggering itemTapped_. |
- e.stopPropagation(); |
- }, |
- |
- /** |
* @param {!chrome.bluetooth.Device} device |
* @return {string} The text to display for |device| in the device list. |
* @private |