| 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 Polymer({ | 9 Polymer({ |
| 10 is: 'settings-about-page', | 10 is: 'settings-about-page', |
| 11 | 11 |
| 12 behaviors: [WebUIListenerBehavior, MainPageBehavior, I18nBehavior], | 12 behaviors: [WebUIListenerBehavior, MainPageBehavior, I18nBehavior], |
| 13 | 13 |
| 14 properties: { | 14 properties: { |
| 15 /** @private {?UpdateStatusChangedEvent} */ | 15 /** @private {?UpdateStatusChangedEvent} */ |
| 16 currentUpdateStatusEvent_: Object, | 16 currentUpdateStatusEvent_: { |
| 17 type: Object, |
| 18 value: {message: '', progress: 0, status: UpdateStatus.DISABLED}, |
| 19 }, |
| 17 | 20 |
| 18 <if expr="chromeos"> | 21 <if expr="chromeos"> |
| 19 /** @private */ | 22 /** @private */ |
| 20 hasCheckedForUpdates_: Boolean, | 23 hasCheckedForUpdates_: Boolean, |
| 21 | 24 |
| 22 /** @private {!BrowserChannel} */ | 25 /** @private {!BrowserChannel} */ |
| 23 currentChannel_: String, | 26 currentChannel_: String, |
| 24 | 27 |
| 25 /** @private {!BrowserChannel} */ | 28 /** @private {!BrowserChannel} */ |
| 26 targetChannel_: String, | 29 targetChannel_: String, |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 }); | 296 }); |
| 294 }, | 297 }, |
| 295 | 298 |
| 296 <if expr="_google_chrome"> | 299 <if expr="_google_chrome"> |
| 297 /** @private */ | 300 /** @private */ |
| 298 onReportIssueTap_: function() { | 301 onReportIssueTap_: function() { |
| 299 this.aboutBrowserProxy_.openFeedbackDialog(); | 302 this.aboutBrowserProxy_.openFeedbackDialog(); |
| 300 }, | 303 }, |
| 301 </if> | 304 </if> |
| 302 }); | 305 }); |
| OLD | NEW |