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

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

Issue 2916383002: Settings: About: Fix restart and powerwash button visibility (Closed)
Patch Set: Smaller delta Created 3 years, 6 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 });
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698