| 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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 this.startDiscovery_(); | 565 this.startDiscovery_(); |
| 566 }, | 566 }, |
| 567 | 567 |
| 568 /** @private */ | 568 /** @private */ |
| 569 onDialogClosed_: function() { | 569 onDialogClosed_: function() { |
| 570 this.stopDiscovery_(); | 570 this.stopDiscovery_(); |
| 571 this.dialogId_ = ''; | 571 this.dialogId_ = ''; |
| 572 this.pairingDevice_ = null; | 572 this.pairingDevice_ = null; |
| 573 this.pairingEvent_ = null; | 573 this.pairingEvent_ = null; |
| 574 }, | 574 }, |
| 575 |
| 576 /** @private */ |
| 577 doNothing_: function() { |
| 578 event.stopPropagation(); |
| 579 }, |
| 575 }); | 580 }); |
| OLD | NEW |