OLD | NEW |
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-ui' implements the UI for the Settings page. | 7 * 'settings-ui' implements the UI for the Settings page. |
8 * | 8 * |
9 * Example: | 9 * Example: |
10 * | 10 * |
(...skipping 30 matching lines...) Expand all Loading... |
41 notify: true, | 41 notify: true, |
42 }, | 42 }, |
43 | 43 |
44 /** @private {boolean} */ | 44 /** @private {boolean} */ |
45 toolbarSpinnerActive_: { | 45 toolbarSpinnerActive_: { |
46 type: Boolean, | 46 type: Boolean, |
47 value: false, | 47 value: false, |
48 }, | 48 }, |
49 | 49 |
50 /** | 50 /** |
51 * Dictionary defining page visibility. | 51 * Dictionary defining page visibility. Pages are hidden when their entry |
52 * This is only set when in guest mode. All pages are visible when not set | 52 * is set to *false*. i.e. visibility defaults to true. |
53 * because polymer only notifies after a property is set. | 53 * @private {!PageVisibility} |
54 * @private {!GuestModePageVisibility} | |
55 */ | 54 */ |
56 pageVisibility_: Object, | 55 pageVisibility_: { |
57 | 56 type: Object, |
58 /** @private */ | 57 value: function() { |
59 showAndroidApps_: Boolean, | 58 return {}; |
| 59 }, |
| 60 }, |
60 | 61 |
61 /** @private */ | 62 /** @private */ |
62 lastSearchQuery_: { | 63 lastSearchQuery_: { |
63 type: String, | 64 type: String, |
64 value: '', | 65 value: '', |
65 } | 66 } |
66 }, | 67 }, |
67 | 68 |
68 listeners: { | 69 listeners: { |
69 'refresh-pref': 'onRefreshPref_', | 70 'refresh-pref': 'onRefreshPref_', |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 searchPrediction: false, | 149 searchPrediction: false, |
149 networkPrediction: false, | 150 networkPrediction: false, |
150 }, | 151 }, |
151 downloads: { | 152 downloads: { |
152 googleDrive: false, | 153 googleDrive: false, |
153 }, | 154 }, |
154 // </if> | 155 // </if> |
155 }; | 156 }; |
156 } | 157 } |
157 | 158 |
158 this.showAndroidApps_ = loadTimeData.valueExists('androidAppsAllowed') && | 159 // <if expr="chromeos"> |
| 160 this.pageVisibility_.androidApps = |
| 161 loadTimeData.valueExists('androidAppsAllowed') && |
159 loadTimeData.getBoolean('androidAppsAllowed'); | 162 loadTimeData.getBoolean('androidAppsAllowed'); |
| 163 // </if> |
160 }, | 164 }, |
161 | 165 |
162 /** @private {?IntersectionObserver} */ | 166 /** @private {?IntersectionObserver} */ |
163 intersectionObserver_: null, | 167 intersectionObserver_: null, |
164 | 168 |
165 /** @override */ | 169 /** @override */ |
166 attached: function() { | 170 attached: function() { |
167 document.documentElement.classList.remove('loading'); | 171 document.documentElement.classList.remove('loading'); |
168 | 172 |
169 setTimeout(function() { | 173 setTimeout(function() { |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 this.$.container.removeAttribute('tabindex'); | 279 this.$.container.removeAttribute('tabindex'); |
276 }.bind(this)); | 280 }.bind(this)); |
277 }, | 281 }, |
278 | 282 |
279 /** @private */ | 283 /** @private */ |
280 directionDelegateChanged_: function() { | 284 directionDelegateChanged_: function() { |
281 this.$.drawer.align = this.directionDelegate.isRtl() ? | 285 this.$.drawer.align = this.directionDelegate.isRtl() ? |
282 'right' : 'left'; | 286 'right' : 'left'; |
283 }, | 287 }, |
284 }); | 288 }); |
OLD | NEW |