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

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

Issue 2210933004: Settings Router Refactor: Kill settings-router. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix merge Created 4 years, 4 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
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 Polymer({ 9 Polymer({
10 is: 'settings-about-page', 10 is: 'settings-about-page',
11 11
12 behaviors: [WebUIListenerBehavior, RoutableBehavior, I18nBehavior], 12 behaviors: [WebUIListenerBehavior, RoutableBehavior, I18nBehavior],
13 13
14 properties: { 14 properties: {
15 /**
16 * The current active route.
17 */
18 currentRoute: {
19 type: Object,
20 notify: true,
21 },
22
23 /** @private {?UpdateStatusChangedEvent} */ 15 /** @private {?UpdateStatusChangedEvent} */
24 currentUpdateStatusEvent_: Object, 16 currentUpdateStatusEvent_: Object,
25 17
26 <if expr="chromeos"> 18 <if expr="chromeos">
27 /** @private */ 19 /** @private */
28 hasCheckedForUpdates_: Boolean, 20 hasCheckedForUpdates_: Boolean,
29 21
30 /** @private {!BrowserChannel} */ 22 /** @private {!BrowserChannel} */
31 currentChannel_: String, 23 currentChannel_: String,
32 24
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 }, 276 },
285 </if> 277 </if>
286 278
287 <if expr="_google_chrome"> 279 <if expr="_google_chrome">
288 /** @private */ 280 /** @private */
289 onReportIssueTap_: function() { 281 onReportIssueTap_: function() {
290 this.aboutBrowserProxy_.openFeedbackDialog(); 282 this.aboutBrowserProxy_.openFeedbackDialog();
291 }, 283 },
292 </if> 284 </if>
293 }); 285 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698