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

Side by Side Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_page.js

Issue 2561463005: MD Settings: Bluetooth: Make top level UI consistent (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
OLDNEW
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
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698