| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview | 6 * @fileoverview |
| 7 * 'settings-bluetooth-page' is the settings page for managing bluetooth | 7 * 'settings-bluetooth-page' is the settings page for managing bluetooth |
| 8 * properties and devices. | 8 * properties and devices. |
| 9 * | 9 * |
| 10 * Example: | 10 * Example: |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 this.startDiscovery_(); | 569 this.startDiscovery_(); |
| 570 }, | 570 }, |
| 571 | 571 |
| 572 /** @private */ | 572 /** @private */ |
| 573 onDialogClosed_: function() { | 573 onDialogClosed_: function() { |
| 574 this.stopDiscovery_(); | 574 this.stopDiscovery_(); |
| 575 this.dialogId_ = ''; | 575 this.dialogId_ = ''; |
| 576 this.pairingDevice_ = null; | 576 this.pairingDevice_ = null; |
| 577 this.pairingEvent_ = null; | 577 this.pairingEvent_ = null; |
| 578 }, | 578 }, |
| 579 |
| 580 /** |
| 581 * @param {Event} e |
| 582 * @private |
| 583 */ |
| 584 stopTap_: function(e) { |
| 585 e.stopPropagation(); |
| 586 }, |
| 579 }); | 587 }); |
| OLD | NEW |