| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 * 'android-apps-page' is the settings page for enabling android apps. | 7 * 'android-apps-page' is the settings page for enabling android apps. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 Polymer({ | 10 Polymer({ |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 93 |
| 94 /** | 94 /** |
| 95 * Handles the shared proxy confirmation dialog 'Cancel' button or a cancel | 95 * Handles the shared proxy confirmation dialog 'Cancel' button or a cancel |
| 96 * event. | 96 * event. |
| 97 * @private | 97 * @private |
| 98 */ | 98 */ |
| 99 onConfirmDisableDialogCancel_: function() { | 99 onConfirmDisableDialogCancel_: function() { |
| 100 /** @type {!SettingsCheckboxElement} */ (this.$.enabled).resetToPrefValue(); | 100 /** @type {!SettingsCheckboxElement} */ (this.$.enabled).resetToPrefValue(); |
| 101 this.$.confirmDisableDialog.close(); | 101 this.$.confirmDisableDialog.close(); |
| 102 }, | 102 }, |
| 103 |
| 104 /** |
| 105 * @param {!Event} e |
| 106 * @private |
| 107 */ |
| 108 stopPropagation_: function(e) { |
| 109 e.stopPropagation(); |
| 110 }, |
| 103 }); | 111 }); |
| OLD | NEW |