| 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 'settings-about-page' contains version and OS related | 6 * @fileoverview 'settings-about-page' contains version and OS related |
| 7 * information. | 7 * information. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 Polymer({ | 10 Polymer({ |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 showButtonContainer_: Boolean, | 59 showButtonContainer_: Boolean, |
| 60 | 60 |
| 61 /** @private */ | 61 /** @private */ |
| 62 showRelaunch_: Boolean, | 62 showRelaunch_: Boolean, |
| 63 | 63 |
| 64 // <if expr="chromeos"> | 64 // <if expr="chromeos"> |
| 65 /** @private */ | 65 /** @private */ |
| 66 showRelaunchAndPowerwash_: { | 66 showRelaunchAndPowerwash_: { |
| 67 type: Boolean, | 67 type: Boolean, |
| 68 computed: 'computeShowRelaunchAndPowerwash_(' + | 68 computed: 'computeShowRelaunchAndPowerwash_(' + |
| 69 'currentUpdateStatusEvent_, targetChannel_)', | 69 'currentUpdateStatusEvent_, targetChannel_, currentChannel_)', |
| 70 }, | 70 }, |
| 71 | 71 |
| 72 /** @private */ | 72 /** @private */ |
| 73 showCheckUpdates_: { | 73 showCheckUpdates_: { |
| 74 type: Boolean, | 74 type: Boolean, |
| 75 computed: 'computeShowCheckUpdates_(' + | 75 computed: 'computeShowCheckUpdates_(' + |
| 76 'currentUpdateStatusEvent_, hasCheckedForUpdates_)', | 76 'currentUpdateStatusEvent_, hasCheckedForUpdates_)', |
| 77 }, | 77 }, |
| 78 | 78 |
| 79 /** @private {!Map<string, string>} */ | 79 /** @private {!Map<string, string>} */ |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 }); | 449 }); |
| 450 }, | 450 }, |
| 451 | 451 |
| 452 // <if expr="_google_chrome"> | 452 // <if expr="_google_chrome"> |
| 453 /** @private */ | 453 /** @private */ |
| 454 onReportIssueTap_: function() { | 454 onReportIssueTap_: function() { |
| 455 this.aboutBrowserProxy_.openFeedbackDialog(); | 455 this.aboutBrowserProxy_.openFeedbackDialog(); |
| 456 }, | 456 }, |
| 457 // </if> | 457 // </if> |
| 458 }); | 458 }); |
| OLD | NEW |