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

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

Issue 2211303004: MD Settings: Refactor RoutableBehavior into MainPageBehavior (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 * 'settings-basic-page' is the settings page containing the basic settings. 7 * 'settings-basic-page' is the settings page containing the basic settings.
8 */ 8 */
9 Polymer({ 9 Polymer({
10 is: 'settings-basic-page', 10 is: 'settings-basic-page',
11 11
12 behaviors: [SettingsPageVisibility, RoutableBehavior], 12 behaviors: [SettingsPageVisibility, MainPageBehavior],
13 13
14 properties: { 14 properties: {
15 /** 15 /** Preferences state. */
16 * Preferences state.
17 */
18 prefs: { 16 prefs: {
19 type: Object, 17 type: Object,
20 notify: true, 18 notify: true,
21 }, 19 },
22 20
23 /** 21 /**
24 * True if the basic page should currently display the reset profile banner. 22 * True if the basic page should currently display the reset profile banner.
25 * @private {boolean} 23 * @private {boolean}
26 */ 24 */
27 showResetProfileBanner_: { 25 showResetProfileBanner_: {
28 type: Boolean, 26 type: Boolean,
29 value: function() { 27 value: function() {
30 return loadTimeData.getBoolean('showResetProfileBanner'); 28 return loadTimeData.getBoolean('showResetProfileBanner');
31 }, 29 },
32 }, 30 },
33 }, 31 },
34 32
35 onResetDone_: function() { 33 onResetDone_: function() {
36 this.showResetProfileBanner_ = false; 34 this.showResetProfileBanner_ = false;
37 }, 35 },
38 }); 36 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698